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

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

const data = await client.getDcaTokenUsers('6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN', { limit: 10 });
{
  "mint": "So11111111111111111111111111111111111111112",
  "users": [
    {
      "wallet": "2FbbdMWfrfGpyyK4Wh76vyxbmDGcp3LxZNhwBwFpV5UK",
      "orderCount": 3,
      "volumeUsd": 12000
    }
  ]
}

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.getDcaTokenUsers('6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN', { limit: 10 });

授权

x-api-key
string
header
必填

API Key for authentication

路径参数

mint
string
必填

查询参数

program
string
默认值:jupiter

DCA program to query. Aliases: dex, platform. Default: jupiter. Use GET /dca/programs for supported ids.

limit
integer
默认值:200

Max results. Default 200, max 1000.

必填范围: 1 <= x <= 1000

响应

Successful response

mint
string
users
object[]