Get Historical Subnet Pools
Endpoint
Section titled “Endpoint”GET /api/dtao/pool/history/v1Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
netuid | query | integer | subnet | |
frequency | query | string | ||
block_number | query | integer | The exact block number | |
block_start | query | integer | block number for start of range | |
block_end | query | integer | block number for end of range | |
timestamp_start | query | integer | Unix timestamp (seconds since 1970-01-01) (inclusive) | |
timestamp_end | query | integer | Unix timestamp (seconds since 1970-01-01) (inclusive) | |
page | query | integer | The page number of the response. | |
limit | query | integer | The number of responses. max is 200, | |
order | query | string |
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": 35600067, "default": 0 }, "total_pages": { "type": "integer", "example": 712002, "default": 0 }, "next_page": { "type": "integer", "example": 2, "default": 0 }, "prev_page": {} } }, "data": { "type": "array", "items": { "type": "object", "properties": { "netuid": { "type": "integer", "example": 23, "default": 0 }, "block_number": { "type": "integer", "example": 5373802, "default": 0 }, "timestamp": { "type": "string", "example": "2025-04-17T21:14:00.001Z" }, "name": { "type": "string", "example": "\ud835\udf0f" }, "symbol": { "type": "string", "example": "\u03c8" }, "market_cap": { "type": "string", "example": "2886862908160.8847268668157859" }, "liquidity": { "type": "string", "example": "2432464684449.9999988910914295" }, "total_tao": { "type": "string", "example": "1216232342225" }, "total_alpha": { "type": "string", "example": "734990070288887" }, "alpha_in_pool": { "type": "string", "example": "309650552567823" }, "alpha_staked": { "type": "string", "example": "425339517721064" }, "price": { "type": "string", "example": "0.00392775770021791803" } } } } }}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.