跳转到主要内容
GET
/
tokens
/
{tokenAddress}
/
holders
/
paginated
SDK
import { Client } from '@solana-tracker/data-api';

const client = new Client({ apiKey: 'YOUR_API_KEY' });

const data = await client.getTokenHoldersPaginated('6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN', 100);
{
  "total": 629520,
  "accounts": [
    {
      "wallet": "2RH6rUTPBJ9rUDPpuV9b8z1YL56k1tYU6Uk5ZoaEFFSK",
      "account": "HkykUVWTctptXZmRTWearMsH4SaQNmE4Ku3tMJe5v2mH",
      "amount": 800000026.912776,
      "value": {
        "quote": 4794089882.482378,
        "usd": 4794089882.482378
      },
      "percentage": 80.00006034693021
    },
    {
      "wallet": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
      "account": "7DaumTmUaK3xcpd8XJXAjUzDrCqPuj3S1Sc2cbootBUN",
      "amount": 29442390.303223,
      "value": {
        "quote": 176436825.90046737,
        "usd": 176436825.90046737
      },
      "percentage": 2.944241152222513
    }
  ],
  "cursor": "Cd3HX8ToTVeJYTN4dB6BuRvnvmTFeXHJ3E4EAfR9s8QA",
  "hasMore": true,
  "limit": 10
}

Documentation Index

Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt

Use this file to discover all available pages before exploring further.

SDK Example

import { Client } from '@solana-tracker/data-api';

const client = new Client({ apiKey: 'YOUR_API_KEY' });

const data = await client.getTokenHoldersPaginated('6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN', 100);

授权

x-api-key
string
header
必填

用于鉴权的 API Key

路径参数

tokenAddress
string
必填

Solana 代币 mint 地址

Pattern: ^[1-9A-HJ-NP-Za-km-z]{32,44}$

查询参数

limit
integer
默认值:1000

每页返回持币地址条数(最小 1,最大 5000,默认 1000)

必填范围: 1 <= x <= 5000
cursor
string | null

分页游标;使用上一页响应中的 cursor 请求下一页。

响应

Successful response

total
integer
必填

Total number of token holders

accounts
object[]
必填

Array of holder accounts for current page

cursor
string | null
必填

Cursor for retrieving the next page. Null if no more pages.

hasMore
boolean
必填

Indicates if there are more pages available

limit
integer
必填

Number of items requested per page