Documentation / API reference / Stats
Get Stats Latest
Last reviewed 2026-09-18
Returns the latest network totals for token supply, staking, accounts, subnets and chain activity. Records include free and staked balances, extrinsic and transfer counts, and subnet registration costs.
Try it
Parameters
No parameters.
Responses
200 — Stats retrieved successfully
| Field | Type | Required |
|---|---|---|
data | array | Yes |
data[].accounts | integer (int32) | Yes |
data[].balance_holders | integer (int32) | Yes |
data[].block_number | integer (int32) | Yes |
data[].extrinsics | integer (int32) | Yes |
data[].free | string | Yes |
data[].issued | string | Yes |
data[].staked | string | Yes |
data[].staked_alpha | string, nullable | |
data[].staked_root | string, nullable | |
data[].staked_root_on_delegate | string, nullable | |
data[].staked_root_on_keep | string, nullable | |
data[].staked_root_on_partial_keep | string, nullable | |
data[].staked_root_on_swap | string, nullable | |
data[].subnet_locked | string | Yes |
data[].subnet_registration_cost | string | Yes |
data[].subnets | integer (int32) | Yes |
data[].timestamp | string (date-time) | Yes |
data[].transfers | integer (int32) | 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": [
{
"accounts": 137331,
"active_accounts": 115008,
"active_balance_holders": 80427,
"balance_holders": 102750,
"block_number": 4106954,
"extrinsics": 97783629,
"issued": "7662539219921512",
"staked": "5938451132111254",
"subnet_registration_cost": "1242632083598",
"subnets": 53,
"timestamp": "2024-10-23T15:36:24Z",
"transfers": 2680168
}
],
"pagination": {
"current_page": 1,
"next_page": null,
"per_page": 1,
"prev_page": null,
"total_items": 1,
"total_pages": 1
}
}Response details
text
{
"block_number": 5446631,
"timestamp": "2025-04-27T23:59:48Z",
"issued": "8687103218584414", tao issued as rao
"staked": "6268206630431947", tao staked as rao total
"staked_alpha": "551990041323928", tao staked as alpha
"staked_root": "5716216589108019", tao staked to root
"subnet_locked": "0",number of locked subnets
"free": "2358319537825949", free tao (as rao)
"accounts": 241470, number of accounts
"balance_holders": 158728, number of accounts with balance
"extrinsics": 128169176,total extrinsics
"transfers": 3366463, transfers
"subnets": 99,number of subnets
"subnet_registration_cost": "328744911965" registration cost as rao
}Other responses
| Status | Meaning |
|---|---|
400 | Bad request |
404 | Stats not found |
500 | Internal server error |
Every request needs an Authorization header holding your API key — see Getting started with the Taostats API.