Authorizations
API Key for authentication
Path Parameters
Query Parameters
Time interval (e.g., '1s', '1m', '1h', '1d')
Start time (Unix timestamp in seconds)
End time (Unix timestamp in seconds)
Response
200 - application/json
Successful response
curl --request GET \
--url https://data.solanatracker.io/holders/chart/{token} \
--header 'x-api-key: <api-key>'
{
"holders": [
{
"holders": 123,
"time": 123
}
]
}
Gets token holder count data over time. Returns up to 1000 of the most recent data points
curl --request GET \
--url https://data.solanatracker.io/holders/chart/{token} \
--header 'x-api-key: <api-key>'
{
"holders": [
{
"holders": 123,
"time": 123
}
]
}
API Key for authentication
Time interval (e.g., '1s', '1m', '1h', '1d')
Start time (Unix timestamp in seconds)
End time (Unix timestamp in seconds)
Successful response
Show child attributes
Was this page helpful?