Skip to content

List ERC-20 transfers

Returns ERC-20 Transfer events emitted on the Bittensor EVM chain. Each row captures the transaction hash, from and to addresses, transferred amount, the token contract (address, name, symbol, decimals) and the block number and timestamp the transfer was included in.

Use address to match either side of a transfer, or from/to to fix a direction; combine with token_address, token_symbol, block_start/block_end, timestamp_start/timestamp_end, or amount_min/amount_max to narrow the result set. Pair with /api/evm/erc20/account/v1 for current balances and /api/evm/erc20/token/v1 for contract metadata.

GET /api/evm/erc20/transfer/v1
NameInTypeRequiredDescription
block_numberqueryinteger
block_startqueryintegerStart of block range (inclusive)
block_endqueryintegerEnd of block range (inclusive)
timestamp_startqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
timestamp_endqueryintegerEnd of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
addressquerystring
toquerystring
fromquerystring
transaction_hashquerystring
token_namequerystring
token_symbolquerystring
token_addressquerystring
amount_minquerystringMinimum amount (inclusive)
amount_maxquerystringMaximum amount (inclusive)
pagequeryinteger
limitqueryinteger
orderquery

Media: application/json

Schema
{
"type": "object",
"required": [
"pagination",
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"required": [
"block_number",
"timestamp",
"transaction_hash",
"to",
"from",
"amount",
"token_decimals",
"token_name",
"token_symbol",
"token_address"
],
"properties": {
"amount": {
"type": "string"
},
"block_number": {
"type": "integer",
"format": "int32"
},
"from": {
"type": "string"
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"to": {
"type": "string"
},
"token_address": {
"type": "string"
},
"token_decimals": {
"type": "integer",
"format": "int32"
},
"token_name": {
"type": "string"
},
"token_symbol": {
"type": "string"
},
"transaction_hash": {
"type": "string"
}
}
}
},
"pagination": {
"type": "object",
"required": [
"current_page",
"per_page",
"total_items",
"total_pages"
],
"properties": {
"current_page": {
"type": "integer",
"format": "int32"
},
"next_page": {
"type": "integer",
"format": "int32",
"nullable": true
},
"per_page": {
"type": "integer",
"format": "int32"
},
"prev_page": {
"type": "integer",
"format": "int32",
"nullable": true
},
"total_items": {
"type": "integer",
"format": "int32"
},
"total_pages": {
"type": "integer",
"format": "int32"
}
}
}
}
}

Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).

All Taostats API requests require an Authorization header containing your API key. See Getting Started.