Skip to content

Get Transfers

GET /api/transfer/v1
NameInTypeRequiredDescription
networkquerystringFinney is the current network. Nakamoto and kusanagi are historical versions.
addressquerystringSS58 or hex format
fromquerystringSS58 or hex format
toquerystringSS58 or hex format
transaction_hashquerystringhash of the transaction
extrinsic_idquerystringThe extrinsic ID
amount_minquerystringmin transaction amount in rao
amount_maxquerystringmax transaction amount in rao
block_numberqueryintegerexact block number
block_startqueryintegerblock number for start of range
block_endqueryintegerblock number for end of range
timestamp_startqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
timestamp_endqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
pagequeryintegerThe page number of the response.
limitqueryintegerThe number of responses. max is 200.
orderquerystring

Media: application/json

{
"type": "object",
"properties": {
"pagination": {
"type": "object",
"properties": {
"current_page": {
"type": "integer",
"example": 1,
"default": 0
},
"per_page": {
"type": "integer",
"example": 50,
"default": 0
},
"total_items": {
"type": "integer",
"example": 3126936,
"default": 0
},
"total_pages": {
"type": "integer",
"example": 62539,
"default": 0
},
"next_page": {
"type": "integer",
"example": 2,
"default": 0
},
"prev_page": {}
}
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "finney-5011620-0017"
},
"to": {
"type": "object",
"properties": {
"ss58": {
"type": "string",
"example": "5FqBL928choLPmeFz5UVAvonBD5k7K2mZSXVC9RkFzLxoy2s"
},
"hex": {
"type": "string",
"example": "0xa69ffb8d15b780999fc0ae940aabf71073498ab19a1561a4c4b473ebbe8a336a"
}
}
},
"from": {
"type": "object",
"properties": {
"ss58": {
"type": "string",
"example": "5HmArgNJrnzR1QuMJGNXEE1bTixsEAtucnhoN6inzRfB1cmS"
},
"hex": {
"type": "string",
"example": "0xfc09dfc989a44fcdea0fb82622ed69fffe1bc53478e7e1264838a7b85c84345f"
}
}
},
"network": {
"type": "string",
"example": "finney"
},
"block_number": {
"type": "integer",
"example": 5011620,
"default": 0
},
"timestamp": {
"type": "string",
"example": "2025-02-26T13:57:36Z"
},
"amount": {
"type": "string",
"example": "57855024736"
},
"fee": {
"type": "string",
"example": "135264"
},
"transaction_hash": {
"type": "string",
"example": "0xbe46e30347cac35f0de27ad47c1a3892de2e32b741da73db754d6047b2a6e4e9"
},
"extrinsic_id": {
"type": "string",
"example": "5011620-0008"
}
}
}
}
}
}

Media: application/json

{
"type": "object",
"properties": {}
}

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