Socially mentioned price levels
/price-levels
Returns price levels extracted from social posts for one resolved asset, grouped into time and USD-price buckets with mention counts. 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
cURL Example
curl --get \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/price-levels' \
--data-urlencode 'asset_id=NVDA' \
--data-urlencode 'asset_class=equity' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
levels
array<object>
Socially mentioned price-level buckets.
levels
Socially mentioned price-level buckets.
levels[].mentions
Number of extracted price mentions represented by this bucket.
levels[].price_usd
Latest or observed market price in US dollars.
levels[].timestamp
UTC RFC 3339 timestamp for the observation or bucket start.
{
"levels": [
{
"mentions": 43,
"price_usd": 182.41,
"timestamp": "2026-08-07T15:00:00Z"
}
]
}