# Token cultiness index

- Method: `GET`
- Path: `/token/{id}/cultiness-index`
- Tier: Pro
- HTML docs: https://docs.hiddensystems.ai/nebula/reference/get-token-id-cultiness-index/
- Interactive docs: https://docs.hiddensystems.ai/nebula/#endpoint=get-token-id-cultiness-index

## Description

Cultiness index time-series for the token.

## cURL Example

```bash
curl --request GET \
  --url 'https://nebula-api.hiddensystems.ai/api/v1/public/token/bitcoin/cultiness-index' \
  --header 'X-API-Key: YOUR_API_KEY'
```

## Path Parameters

- `id` (string, required): Token identifier. Accepts internal token_id (integer) or coingecko_id (string, e.g. bitcoin).

## Query Parameters

- `hours` (integer, optional): Lookback window in hours.
- `granularity` (string, optional): Optional bucket size override. If provided, response is aggregated at this interval regardless of lookback window.

## Response

OK

- `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.

Media type: `application/json`

## JSON Response

```json
{
  "series": [
    {
      "index": 0,
      "time": "2026-01-15T12:00:00Z"
    }
  ]
}
```
