Skip to content

Get Account History

GET /api/account/history/v1

Gives most recent coldkey balance (from the database)

NameInTypeRequiredDescription
addressquerystringAddress String to query
networkquerystringFinney is the current network. nalamoto and kusanagi added for historical data.
block_numberqueryintegerBlock for data
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_endqueryintegerEnd of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
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": 708,
"default": 0
},
"total_pages": {
"type": "integer",
"example": 15,
"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": "5HGtyz1mAgRMPgtubVTaJv8VBfwJ7a5KGGGDw5PX7WPPwLKS"
},
"hex": {
"type": "string",
"example": "0xe67990e42259688c76faad3d2cb02dbba69ecef0c780356181eac0512de6d752"
}
}
},
"network": {
"type": "string",
"example": "finney"
},
"block_number": {
"type": "integer",
"example": 5007431,
"default": 0
},
"timestamp": {
"type": "string",
"example": "2025-02-25T23:59:48Z"
},
"rank": {
"type": "integer",
"example": 0,
"default": 0
},
"balance_free": {
"type": "string",
"example": "12443252"
},
"balance_staked": {
"type": "string",
"example": "327659746222"
},
"balance_staked_alpha_as_tao": {
"type": "string",
"example": "75599415"
},
"balance_staked_root": {
"type": "string",
"example": "327584146807"
},
"balance_total": {
"type": "string",
"example": "327672189474"
},
"created_on_date": {
"type": "string",
"example": "2023-03-21"
},
"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.