Authorizations
API Key for authentication
Query Parameters
The token address
Start time (unix timestamp)
End time (unix timestamp)
curl --request GET \
--url https://data.solanatracker.io/price/history/range \
--header 'x-api-key: <api-key>'
{
"token": "HEZ6KcNNUKaWvUCBEe4BtfoeDHEHPkCHY9JaDNqrpump",
"price": {
"lowest": {
"price": 0.000005754645330040387,
"marketcap": 5596.095215452651,
"time": 1740007974
},
"highest": {
"price": 0.003416286604926481,
"marketcap": 3322162.188631335,
"time": 1740216420
}
}
}
Gets the lowest and highest price in a time range
curl --request GET \
--url https://data.solanatracker.io/price/history/range \
--header 'x-api-key: <api-key>'
{
"token": "HEZ6KcNNUKaWvUCBEe4BtfoeDHEHPkCHY9JaDNqrpump",
"price": {
"lowest": {
"price": 0.000005754645330040387,
"marketcap": 5596.095215452651,
"time": 1740007974
},
"highest": {
"price": 0.003416286604926481,
"marketcap": 3322162.188631335,
"time": 1740216420
}
}
}
API Key for authentication
The token address
Start time (unix timestamp)
End time (unix timestamp)
Was this page helpful?