Get Historical Statistics of a Token
GEThttps://api.fuse.io/api/v0/trade/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
data object[]
{
"data": [
{
"address": "string",
"price": "string",
"volume": "string",
"timestamp": 0,
"date": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://api.fuse.io/api/v0/trade/stats/:tokenAddress' \
-H 'Accept: application/json'
ResponseClear