Token cultiness index
GET
GetTokenIdCultinessIndex
/token/{id}/cultiness-index
Cultiness index time-series for the token.
Parameters
Token identifier. Accepts internal token_id (integer) or coingecko_id (string, e.g. bitcoin).
Example:bitcoin
Lookback window in hours.
Example:168
Optional bucket size override. If provided, response is aggregated at this interval regardless of lookback window.
Allowed values
1h2h4h12h1d
Example:1h
cURL Example
curl --request GET \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/token/bitcoin/cultiness-index' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
200
OK
400
Bad Request
ErrorResponse
Media type application/json
series
array<object>
Cultiness index time series.
series
array<object>
Cultiness index time series.
series[].index
number (double)
Index value (typically 0-100 scale).
series[].time
string (date-time)
UTC timestamp for the data point.
{
"series": [
{
"index": 0,
"time": "2026-01-15T12:00:00Z"
}
]
}