Skip to content

Get Account

GET /api/account/latest/v1

Gives most recent coldkey balance (from the database)

NameInTypeRequiredDescription
addressquerystringAddress String to query.
networkquerystringFinney is the current network. Nakamoto and kusanagi added for historical data.
balance_free_minquerystringMin free balance in rao
balance_free_maxquerystringin rao
balance_staked_minquerystringin rao
balance_staked_maxquerystringin rao
balance_total_minquerystringin rao
balance_total_maxquerystringin rao
orderquerystring
pagequeryintegerPage of entries to retrieve.
limitqueryintegerNumber of entries to return. Max value is 200.

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": 205362,
"default": 0
},
"total_pages": {
"type": "integer",
"example": 4108,
"default": 0
},
"next_page": {
"type": "integer",
"example": 2,
"default": 0
},
"prev_page": {}
}
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"address": {
"type": "object",
"properties": {
"ss58": {
"type": "string",
"example": "5GBnPzvPghS8AuCoo6bfnK7JUFHuyUhWSFD4woBNsKnPiEUi"
},
"hex": {
"type": "string",
"example": "0xb656ef6d8fa3ae7a7800906b6ea83a7c1320041290002c3ae7b1e4c68b1e4a67"
}
}
},
"network": {
"type": "string",
"example": "finney"
},
"block_number": {
"type": "integer",
"example": 5011596,
"default": 0
},
"timestamp": {
"type": "string",
"example": "2025-02-26T13:52:48Z"
},
"rank": {
"type": "integer",
"example": 1,
"default": 0
},
"balance_free": {
"type": "string",
"example": "777150581296935"
},
"balance_staked": {
"type": "string",
"example": "0"
},
"balance_staked_alpha_as_tao": {
"type": "string",
"example": "0"
},
"balance_staked_root": {
"type": "string",
"example": "0"
},
"balance_total": {
"type": "string",
"example": "777150581296935"
},
"created_on_date": {
"type": "string",
"example": "2024-04-09"
},
"created_on_network": {
"type": "string",
"example": "finney"
},
"coldkey_swap": {}
}
}
}
}
}

Media: application/json

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

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