Get Account History
Endpoint
Section titled “Endpoint”GET /api/account/history/v1Description
Section titled “Description”Gives most recent coldkey balance (from the database)
Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
address | query | string | ✅ | Address String to query |
network | query | string | Finney is the current network. nalamoto and kusanagi added for historical data. | |
block_number | query | integer | Block for data | |
block_start | query | integer | block number for start of range | |
block_end | query | integer | block number for end of range | |
timestamp_start | query | integer | Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) | |
timestamp_end | query | integer | End of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) | |
order | query | string | ||
page | query | integer | Page of entries to retrieve. | |
limit | query | integer | Number of entries to return. Max value is 200. |
Responses
Section titled “Responses”200 — 200
Section titled “200 — 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": {} } } } }}400 — 400
Section titled “400 — 400”Media: application/json
{ "type": "object", "properties": {}}Authentication
Section titled “Authentication”All Taostats API requests require an Authorization header containing your API key. See Getting Started.