Notable calls
/notable-calls
Returns ranked source posts containing notable long or short calls for one resolved asset, including entry price, direction-aligned performance, outcome, and source attribution. 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:2160
Maximum results returned.
Default:12
cURL Example
curl --get \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/notable-calls' \
--data-urlencode 'asset_id=NVDA' \
--data-urlencode 'asset_class=equity' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
calls
array<object>
Ranked notable calls.
calls
Ranked notable calls.
calls[].aligned_return_pct
Return since entry aligned to call direction, in percentage points; positive means the call was correct.
calls[].author_handle
Source author's public handle.
calls[].author_name
Source author's display name.
calls[].avatar_url
Source author's avatar URL.
calls[].call_id
Stable identifier for the market call.
calls[].direction
Direction of the call: long or short.
longshort
calls[].entry_price_usd
Asset price in US dollars when the call was made.
calls[].follower_count
Source author's follower count at ingestion time.
calls[].notability_score
Relative ranking score combining caller influence and directional performance.
calls[].outcome
Resolved classification of the call.
winlosspending
calls[].post_id
Identifier of the source post.
calls[].post_text
Text of the source post.
calls[].posted_at
UTC RFC 3339 time when the source call was published.
calls[].price_change_24h_pct
Raw market-price change over 24 hours, in percentage points.
calls[].price_change_30d_pct
Raw market-price change over 30 days, in percentage points.
calls[].price_change_7d_pct
Raw market-price change over seven days, in percentage points.
calls[].profile_url
Public URL of the source author's profile.
{
"calls": [
{
"aligned_return_pct": 8.7,
"author_handle": "marketanalyst",
"author_name": "Market Analyst",
"avatar_url": "https://cdn.hiddensystems.ai/avatars/marketanalyst.jpg",
"call_id": 98721,
"direction": "long",
"entry_price_usd": 168.25,
"follower_count": 245000,
"notability_score": 0.91,
"outcome": "win",
"post_id": "1952712345678901234",
"post_text": "NVIDIA demand remains stronger than consensus expects.",
"posted_at": "2026-08-05T13:42:00Z",
"price_change_24h_pct": 2.37,
"price_change_30d_pct": 12.46,
"price_change_7d_pct": 5.81,
"profile_url": "https://x.com/marketanalyst"
}
]
}