Get Price History
Endpoint
Section titled “Endpoint”GET /api/price/history/v1Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
asset | query | string | ✅ | default value TAO |
timestamp_start | query | integer | Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) | |
timestamp_end | query | integer | Start of timestamp range in 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 | Order of the responses. |
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": 30152, "default": 0 }, "total_pages": { "type": "integer", "example": 604, "default": 0 }, "next_page": { "type": "integer", "example": 2, "default": 0 }, "prev_page": {} } }, "data": { "type": "array", "items": { "type": "object", "properties": { "created_at": { "type": "string", "example": "2025-02-26T13:45:02Z" }, "updated_at": { "type": "string", "example": "2025-02-26T13:45:02Z" }, "name": { "type": "string", "example": "Bittensor" }, "symbol": { "type": "string", "example": "TAO" }, "slug": { "type": "string", "example": "bittensor" }, "circulating_supply": { "type": "string", "example": "8398025" }, "max_supply": { "type": "string", "example": "21000000" }, "total_supply": { "type": "string", "example": "8398025" }, "last_updated": { "type": "string", "example": "2025-02-26T13:44:00Z" }, "price": { "type": "string", "example": "366.499646341234" }, "volume_24h": { "type": "string", "example": "263821126.141511" }, "market_cap": { "type": "string", "example": "3077873192.46484" }, "percent_change_1h": { "type": "string", "example": "-0.88079436" }, "percent_change_24h": { "type": "string", "example": "-0.250314" }, "percent_change_7d": { "type": "string", "example": "-11.00275914" }, "percent_change_30d": { "type": "string", "example": "-14.498297" }, "percent_change_60d": { "type": "string", "example": "-21.61015966" }, "percent_change_90d": { "type": "string", "example": "-34.25472829" }, "market_cap_dominance": { "type": "string", "example": "0.1074" }, "fully_diluted_market_cap": { "type": "string", "example": "7696492573.17" } } } } }}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.