Forecastable assets
/forecasts/assets
Every asset with a forecast right now. The list covers both /forecasts/mindshare and /forecasts/sentiment, which forecast the same assets: pass an asset's asset_id and asset_class to either. Stocks, commodities, and indices come first, then crypto, most-discussed first. The list updates every five minutes.
Parameters
Restricts the list to one class: equity (stocks and ETFs), commodity, index, or crypto.
equitycommodityindexcrypto
Example:equity
Maximum results returned.
Default:100
Number of results skipped.
Default:0
cURL Example
curl --request GET \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/forecasts/assets' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
assets
array<object>
Assets with a current forecast: stocks, commodities, and indices first, then crypto; most-discussed first within each class.
assets
Assets with a current forecast: stocks, commodities, and indices first, then crypto; most-discussed first within each class.
assets[].as_of
UTC start of the asset's current forecast: the end of the last complete 15 minutes it was computed from.
assets[].asset_class
The asset's class: equity (stocks and ETFs), commodity, index, or crypto. Send it with asset_id on every asset-scoped request.
equitycommodityindexcrypto
assets[].asset_id
Canonical public asset identifier: the ticker or market symbol for stocks, commodities, and indices, and the CoinGecko slug (or, without one, a numeric id) for crypto.
assets[].name
Human-readable name.
assets[].symbol
Display ticker or market symbol.
has_more
True when another page is available after the returned records.
limit
Maximum records requested.
offset
Number of matching records skipped.
total
How many assets match the request across every page.
{
"assets": [
{
"as_of": "2026-09-14T14:15:00Z",
"asset_class": "equity",
"asset_id": "NVDA",
"name": "NVIDIA Corporation",
"symbol": "NVDA"
},
{
"as_of": "2026-09-14T14:15:00Z",
"asset_class": "equity",
"asset_id": "TSLA",
"name": "Tesla, Inc.",
"symbol": "TSLA"
},
{
"as_of": "2026-09-14T14:15:00Z",
"asset_class": "equity",
"asset_id": "AMZN",
"name": "Amazon.com, Inc.",
"symbol": "AMZN"
}
],
"has_more": true,
"limit": 100,
"offset": 0,
"total": 3206
}