Get Core Token Transfer Data
1. Overview & Typical Use
Returns transfer data for core tokens, including daily transfer amounts in USD.
- Typical use: analyze transfer amount trends for TRX or a specified token.
- When not to use: for holder details and transaction history of a single token use “Get Token Transaction Data”.
2. Endpoint & Authentication
GET /api/tokenTransfer/analysis
For Base URL and authentication, see Common Network & Authentication.
3. Request
Fields
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
token | string | No | — | Token ID or address; for TRX set to _; can be empty |
days | integer | No | — | Number of days to query |
4. Response
Fields
Top-level
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
size | integer | Required | Number of data entries | — |
avg_transfer_usd_amount | string | Required | Average daily transfer amount | USD |
data | array | Required | Daily transfer data list; see below | — |
data[] elements
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
day | string | Required | Statistics date | yyyy-MM-dd |
usd_amount | string | Required | Transfer amount on this day | USD |
5. Errors
For HTTP status codes, see Common Errors. Key points for this endpoint:
- Empty result is not an error: no matches returns
200+data: []— this is a normal response.
Last updated on: