Documentation / API reference / Transfer
Get Transfers
Last reviewed 2026-09-18
Returns TAO transfers with sender, recipient, amount, fee and transaction identifiers. Filter by account, direction, amount, network or block and time ranges.
Try it
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
network | query | string | Finney is the current network. Nakamoto and kusanagi are historical versions. One of all, finney, nakamoto, kusanagi. | |
address | query | string | SS58 or hex format | |
from | query | string | SS58 or hex format | |
to | query | string | SS58 or hex format | |
transaction_hash | query | string | hash of the transaction | |
extrinsic_id | query | string | The extrinsic ID | |
amount_min | query | string | Minimum amount (inclusive) | |
amount_max | query | string | Maximum amount (inclusive) | |
block_number | query | integer (int32) | exact block number | |
block_start | query | integer (int32) | Start of block range (inclusive) | |
block_end | query | integer (int32) | End of block range (inclusive) | |
timestamp_start | query | integer (int64) | Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) | |
timestamp_end | query | integer (int64) | End of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) | |
page | query | integer (int32) | The page number of the response. | |
limit | query | integer (int32) | The number of responses. max is 200. | |
order | query | string | One of amount_asc, amount_desc, block_number_asc, block_number_desc, timestamp_asc, timestamp_desc. |
Responses
200 — Transfers retrieved successfully
| Field | Type | Required | Description |
|---|---|---|---|
data | array | Yes | |
data[].amount | string | Yes | |
data[].block_number | integer (int32) | Yes | |
data[].extrinsic_id | string | Yes | |
data[].fee | string | Yes | |
data[].from | object | Yes | |
data[].from.hex | string | Yes | The hex format of the hot key |
data[].from.ss58 | string | Yes | The SS58 format of the hot key |
data[].id | string | Yes | |
data[].network | string | Yes | |
data[].timestamp | string (date-time) | Yes | |
data[].to | object | Yes | |
data[].to.hex | string | Yes | The hex format of the hot key |
data[].to.ss58 | string | Yes | The SS58 format of the hot key |
data[].transaction_hash | string | Yes | |
pagination | object | Yes | |
pagination.current_page | integer (int32) | Yes | |
pagination.next_page | integer (int32), nullable | ||
pagination.per_page | integer (int32) | Yes | |
pagination.prev_page | integer (int32), nullable | ||
pagination.total_items | integer (int32) | Yes | |
pagination.total_pages | integer (int32) | Yes |
Example response
json
{
"data": [
{
"amount": "57855024736",
"block_number": 5011620,
"extrinsic_id": "5011620-0008",
"fee": "135264",
"from": {
"hex": "0xfc09dfc989a44fcdea0fb82622ed69fffe1bc53478e7e1264838a7b85c84345f",
"ss58": "5HmArgNJrnzR1QuMJGNXEE1bTixsEAtucnhoN6inzRfB1cmS"
},
"id": "finney-5011620-0017",
"network": "finney",
"timestamp": "2025-02-26T13:57:36Z",
"to": {
"hex": "0xa69ffb8d15b780999fc0ae940aabf71073498ab19a1561a4c4b473ebbe8a336a",
"ss58": "5FqBL928choLPmeFz5UVAvonBD5k7K2mZSXVC9RkFzLxoy2s"
},
"transaction_hash": "0xbe46e30347cac35f0de27ad47c1a3892de2e32b741da73db754d6047b2a6e4e9"
},
{
"amount": "499700000",
"block_number": 5011617,
"extrinsic_id": "5011617-0004",
"fee": "135264",
"from": {
"hex": "0xf4727f994265ec96f5cfc2222ee6aac87025293a794c9160ef176817e98a676c",
"ss58": "5HbDZ6ULuwZegAMSPaS2kaUfBLMDaht5t48RcDrQATSgGCAR"
},
"id": "finney-5011617-0011",
"network": "finney",
"timestamp": "2025-02-26T13:57:00Z",
"to": {
"hex": "0x8e8863dd638079942969881f92bc16317866f345c79f680103e5cf8bb1c7a534",
"ss58": "5FHbAzbXXqNxhQEbEdazZYYoji7wwAe2cRj1YYLipg6gnFPf"
},
"transaction_hash": "0x6b13321da5cbb83c25c539c7dbe1032a83933feb707c06cb10474e2161bf841b"
}
],
"pagination": {
"current_page": 1,
"next_page": 2,
"per_page": 50,
"prev_page": null,
"total_items": 3126936,
"total_pages": 62539
}
}Response details
text
"data": [
{
"id": "finney-5452109-0041",
"to": {
"ss58": "5GGe5VYiBBNYL2rHA77wviRkWDCrV2FubZr81QqxA27qn4Ch",
"hex": "0xba0b28643493786230b3d310eb1642a74fa056294ab76f9259825724563510c7"
},
"from": {
"ss58": "5D8J4g7A1j2LHBMbBoB6aseaUnYLY6T1qUHhXKTP5My6FbKx",
"hex": "0x2ef91ee6e48da1933ddacbc8d5add110ab7ba7c51c546b9dc2b04f463cf86907"
},
"network": "finney",
"block_number": 5452109,
"timestamp": "2025-04-28T18:15:24Z",
"amount": "6500000000", in rao
"fee": "135263", in rao
"transaction_hash": "0x20c70d9f8205ae781e482166ab9e07ecb5579931f680bf839c483b49c6ad3bcf",
"extrinsic_id": "5452109-0013"
},Other responses
| Status | Meaning |
|---|---|
400 | Bad request |
404 | Transfers not found |
500 | Internal server error |
Every request needs an Authorization header holding your API key — see Getting started with the Taostats API.