Assets in an author cluster
/clusters/{cluster_id}/assets
Returns assets ranked by post activity within one canonical author cluster and one required asset class. Equity results can include stocks, commodities, and indices.
Parameters
Cluster identifier.
Example:smart_money
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:24
Maximum results returned.
Default:40
cURL Example
curl --get \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/clusters/smart_money/assets' \
--data-urlencode 'asset_class=equity' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
assets
array<object>
Assets matching the supplied discovery filters.
assets
Assets matching the supplied discovery filters.
assets[].asset_class
Market class that namespaces the asset identifier.
assets[].asset_id
Canonical public asset identifier. Equity identifiers are ticker symbols; crypto identifiers are canonical crypto IDs.
assets[].bearish_posts
Posts classified as bearish.
assets[].bullish_posts
Posts classified as bullish.
assets[].name
Human-readable name.
assets[].neutral_posts
Posts classified as neutral.
assets[].sentiment_signal
Decay-weighted net bullish posts: bullish minus bearish. Positive is bullish, negative is bearish, and magnitude grows with activity.
assets[].symbol
Display ticker or market symbol.
assets[].total_posts
Post count over the metric's active lookback window.
cluster
Canonical author-cluster identifier.
hours
Lookback window represented by the response, in hours.
total_posts
Post count over the metric's active lookback window.
{
"assets": [
{
"asset_class": "equity",
"asset_id": "NVDA",
"bearish_posts": 438,
"bullish_posts": 1120,
"name": "NVIDIA Corporation",
"neutral_posts": 284,
"sentiment_signal": 128.6,
"symbol": "NVDA",
"total_posts": 1842
}
],
"cluster": "smart_money",
"hours": 168,
"total_posts": 1842
}