Asset Fear and Greed index
/fear-greed-index
Returns Nebula's 0–100 Fear and Greed series, current reading, labels, and component methodology for one resolved asset. Asset selectors support equities, commodities, indices, and crypto assets returned by GET /assets; commodity and index IDs use asset_class=equity.
Parameters
Canonical identifier returned by /assets. Stock, commodity, and index IDs are normally ticker or market symbols and use asset_class=equity; crypto IDs are canonical crypto slugs. asset_class is mandatory whenever asset_id is present.
Example:NVDA
Namespace of asset_id, or the market class for endpoints with a class-scoped global view. Stocks, commodities, and indices use equity. Equity is the documented default only where the endpoint description states a default.
equitycrypto
Example:equity
Lookback window in hours.
Default:720
Requested time-series bucket size. When omitted, the service chooses a bucket size appropriate for the lookback window.
1h2h4h12h1d
Example:1h
cURL Example
curl --get \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/fear-greed-index' \
--data-urlencode 'asset_id=NVDA' \
--data-urlencode 'asset_class=equity' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
current
object
Most recent value for each returned series or the current index reading.
current
Most recent value for each returned series or the current index reading.
current.index
Nebula index value on a 0–100 scale.
current.label
Human-readable bucket or index label.
metadata
object
Methodology and request-window metadata needed to interpret the response.
metadata
Methodology and request-window metadata needed to interpret the response.
metadata.components
array<object>
Weighted components used to calculate the index.
metadata.components
Weighted components used to calculate the index.
metadata.components[].description
Human-readable explanation of this component.
metadata.components[].name
Human-readable name.
metadata.components[].weight
Component weight as a decimal fraction.
metadata.hours
Lookback window represented by the response, in hours.
metadata.labels
Ordered labels used to interpret index ranges.
metadata.scale
Published scale or interpretation of the metric.
series
array<object>
Chronologically ordered observations.
series
Chronologically ordered observations.
series[].index
Nebula index value on a 0–100 scale.
series[].label
Human-readable bucket or index label.
series[].timestamp
UTC RFC 3339 timestamp for the observation or bucket start.
{
"current": {
"index": 67.4,
"label": "Greed"
},
"series": [
{
"index": 67.4,
"label": "Greed",
"timestamp": "2026-08-07T15:00:00Z"
}
]
}