Skip to content

Get Price History

GET /api/price/history/v1
NameInTypeRequiredDescription
assetquerystringdefault value TAO
timestamp_startqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
timestamp_endqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
pagequeryintegerThe page number of the response.
limitqueryintegerThe number of responses. max is 200,
orderquerystringOrder of the responses.

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"
}
}
}
}
}
}

Media: application/json

{
"type": "object",
"properties": {}
}

All Taostats API requests require an Authorization header containing your API key. See Getting Started.