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)
Was this page helpful?