Get Historical Statistics of a Token
GET/stats/:tokenAddress
Get Historical Statistics of a Token
Request
Path Parameters
tokenAddress stringrequired
Token Contract Address.
Query Parameters
limit integer
Number of items to return.
apiKey stringrequired
Your Public API key.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
address string
price string
volume string
timestamp integer
date string
{
"data": [
{
"address": "string",
"price": "string",
"volume": "string",
"timestamp": 0,
"date": "string"
}
]
}
Loading...