Token smart money post volume
GET
GetTokenIdSmartMoneyPostVolume
/token/{id}/smart-money-post-volume
Post volume time-series from smart money (giga brain) cohort only. Note: /token/{id}/smartmoney-post-volume is a deprecated alias and will be removed after 30 days.
Parameters
Token identifier. Accepts internal token_id (integer) or coingecko_id (string, e.g. bitcoin).
Example:bitcoin
Lookback window in hours.
Example:168
Optional bucket size override. If provided, response is aggregated at this interval regardless of lookback window.
Allowed values
1h2h4h12h1d
Example:1h
cURL Example
curl --request GET \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/token/bitcoin/smart-money-post-volume' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
200
OK
400
Bad Request
ErrorResponse
Media type application/json
giga_brain_volume
array<object>
Token social post-volume series for smart-money cohort.
giga_brain_volume
array<object>
Token social post-volume series for smart-money cohort.
giga_brain_volume[].tag_breakdown
array<object>
Per-bucket post-tag counts for smart-money posts.
giga_brain_volume[].tag_breakdown
array<object>
Per-bucket post-tag counts for smart-money posts.
giga_brain_volume[].tag_breakdown[].count
integer (int64)
Smart-money posts carrying the tag in the bucket.
giga_brain_volume[].tag_breakdown[].tag
string
Normalized post tag.
Allowed values
technical_analysisfundamental_analysisonchainmacrofomofudshillingnews_reportproject_updatealpha_leakprediction_marketipoetflistingdelistinghackscam_warningairdropwhalebreaking_newspotential_catalystmindsharefundraisingrumourlong_callshort_call
giga_brain_volume[].time
string (date-time)
UTC timestamp for the data point.
giga_brain_volume[].value
number (double)
Numeric metric value for the timestamp.
{
"giga_brain_volume": [
{
"tag_breakdown": [
{
"count": 0,
"tag": "technical_analysis"
}
],
"time": "2026-01-15T12:00:00Z",
"value": 0
}
]
}