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

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

const data = await client.getTokenBundlers('6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN');
{
  "total": 140,
  "balance": 32457164.112205,
  "percentage": 3.24567802152891,
  "initialBalance": 0,
  "initialPercentage": 0,
  "wallets": [
    {
      "wallet": "4LV1AGBhB4or8r8dtpuoucttxpdo9UcKyHkSDEdjnC3d",
      "initialBalance": 0,
      "initialPercentage": 0,
      "balance": 16731822.881449,
      "percentage": 1.6731825365707074,
      "bundleTime": 1768443057571
    }
  ]
}

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.getTokenBundlers('6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN');

授权

x-api-key
string
header
必填

用于鉴权的 API Key

路径参数

token
string
必填

Solana 代币 mint 地址

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

响应

Successful response

total
integer
必填

Total number of bundler wallets

balance
number
必填

Total balance of all bundler wallets

percentage
number
必填

Percentage of total supply held by bundlers

initialBalance
number
必填

Initial balance of bundlers

initialPercentage
number
必填

Initial percentage held by bundlers

wallets
object[]
必填

Array of bundler wallet information (up to 500 wallets)