Get TRC10 Token Transfer List for an Address
1. Overview & Typical Use
Query TRC10 token transfer records for a specified address, with support for filtering by direction (in / out), time range, and other conditions.
- Typical use: wallet TRC10 token transaction history display, querying inbound/outbound transfer details for a specific token.
- When not to use: for TRX transfers use “Get TRX Transfer List for an Address”; for TRC20 token transfers use “Get TRC20 Token Transfer List for an Address”.
2. Endpoint & Authentication
GET /api/transfer/token10
For Base URL and authentication, see Common Network & Authentication.
3. Request
Fields
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
address | string | Yes | — | Query address |
trc10Id | string | Yes | — | TRC10 token ID |
start | integer | No | 0 | Start offset; start + limit ≤ 10000 |
limit | integer | No | 20 | Page size, max 50 |
direction | integer | No | 1 | Transfer direction: 1 in, 2 out, 0 all |
start_timestamp | integer | No | 1529769600000 | Start time, ms timestamp |
end_timestamp | integer | No | — | End time, ms timestamp |
db_version | integer | No | 0 | Filter invalid transfers |
reverse | boolean | No | true | Sort data in descending order |
4. Response
Fields
Top-level
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
code | integer | Required | Status code | — |
page_size | integer | Required | Number of records returned on the current page | — |
tokenInfo | object | Required | TRC10 token metadata (value schema below) | — |
data | array | Required | Transfer record array; see below | — |
contractMap | object | Optional | Address → whether it is a contract mapping | — |
tokenInfo object schema (9 common fields):
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
tokenId | string | Required | Token contract address (Base58); TRX placeholder is _ | — |
tokenAbbr | string | Required | Token abbreviation (e.g. USDT / TRX) | — |
tokenName | string | Required | Token name | — |
tokenDecimal | integer | Required | Decimal precision (required to convert the amount field) | — |
tokenCanShow | integer | Required | Whether displayable (1 yes / 0 no) | — |
tokenType | string | Required | Token type (trc10 / trc20 / trc721 / trc1155) | — |
tokenLogo | string | Required | Token logo URL | — |
tokenLevel | string | Required | Token level | — |
vip | boolean | Required | Whether it is a VIP token | — |
data[] elements
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
hash | string | Required | Transaction hash | — |
block | integer | Required | Block height | — |
block_timestamp | integer | Required | Block time | ms timestamp |
from | string | Required | Sender address | — |
to | string | Required | Recipient address | — |
amount | string | Required | Transfer amount (raw value) | Use tokenInfo.tokenDecimal to convert |
confirmed | integer | Required | Confirmation status | — |
contract_type | string | Required | Contract type string (e.g. TransferAssetContract) | — |
contractType | integer | Required | Contract type number | — |
revert | integer | Required | Whether reverted | — |
contract_ret | string | Required | Contract execution result | — |
id | integer | Required | TRC10 token ID | — |
symbol | string | Required | Token abbreviation | — |
issue_address | string | Required | Token issuer address | — |
decimals | integer | Required | Token decimals | — |
token_name | string | Required | Token name | — |
direction | integer | Required | Transfer direction | — |
5. Errors
For HTTP status codes, see Common Errors. Notes for this endpoint:
- Required parameters: both
addressandtrc10Idare required; missingtrc10Idreturns400. - Parameter violations are not reported as errors:
limit > 50,start + limit > 10000, etc. are silently truncated. - Empty result is not an error: no matches returns
200+data: [], which is a normal response.
Last updated on: