Token Fear and Greed index
/token/{id}/fear-greed-index
Fear and Greed index time-series for the token (0–100 scale). Diagnostics are omitted by default; pass debug=true to include model diagnostic fields.
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.
1h2h4h12h1d
Example:1h
Set true to include diagnostic fields in the response.
Example:string
cURL Example
curl --request GET \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/token/bitcoin/fear-greed-index' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
current
object
Latest Fear and Greed index value.
current
Latest Fear and Greed index value.
current.index
Index value (typically 0-100 scale).
current.label
Human-readable label for the index regime.
debug
Optional diagnostics included only when debug=true.
metadata
object
Model metadata and component weights.
metadata
Model metadata and component weights.
metadata.components
array<object>
Model components contributing to the index.
metadata.components
Model components contributing to the index.
metadata.components[].description
No description provided.
metadata.components[].name
Display name.
metadata.components[].weight
No description provided.
metadata.hours
Lookback window in hours used to compute the metric.
metadata.labels
Human-readable labels for index regimes.
metadata.scale
No description provided.
metadata.token_id
Internal token identifier.
series
array<object>
Fear and Greed index time series.
series
Fear and Greed index time series.
series[].absolute_momentum
Composite absolute momentum component.
series[].debug_mom_long
No description provided.
series[].debug_mom_short
No description provided.
series[].debug_sent_long
No description provided.
series[].debug_sent_short
No description provided.
series[].debug_vol_long
No description provided.
series[].debug_vol_short
No description provided.
series[].emotions
No description provided.
series[].immediate_momentum
Momentum contribution from the most recent window.
series[].immediate_sentiment
Sentiment contribution from the most recent window.
series[].immediate_volume
Volume contribution from the most recent window.
series[].index
Index value (typically 0-100 scale).
series[].label
Human-readable label for the index regime.
series[].long_abs_momentum
Long-horizon absolute momentum component.
series[].long_rel_momentum
Long-horizon relative momentum component.
series[].momentum
No description provided.
series[].post_volume
Post volume used in the Fear and Greed index calculation.
series[].relative_momentum
Composite relative momentum component.
series[].relative_volume
Relative social or trading volume vs baseline.
series[].sentiment
No description provided.
series[].short_abs_momentum
Short-horizon absolute momentum component.
series[].short_rel_momentum
Short-horizon relative momentum component.
series[].social_volume_multiplier
Multiplier capturing how elevated social volume is vs baseline.
series[].time
UTC timestamp for the data point.
series[].volatility
No description provided.
{
"current": {
"index": 42.7,
"label": "Fear"
},
"metadata": {
"components": [
{
"description": "Volatility component on a 0-100 greed scale.",
"name": "volatility",
"weight": 0.16
}
],
"hours": 168,
"labels": [
"Extreme Fear (0-24)",
"Fear (25-49)",
"Greed (50-74)",
"Extreme Greed (75-100)"
],
"scale": "0-100",
"token_id": 1
},
"series": [
{
"index": 42.7,
"label": "Fear",
"time": "2026-01-15T00:00:00Z"
}
]
}