Token Sentiment
Returns the detailed Reddit report for one crypto symbol.
Includes:
- buzz_score: normalized Reddit activity score for the selected period
- trend: activity momentum over the current 3 UTC days vs previous 3 UTC days using mentions, upvotes and subreddit breadth; not price movement. For from/to, anchors at to (or now when to is today)
- sentiment_score, bullish_pct, bearish_pct: directional sentiment signals
- mentions, unique_posts, subreddit_count, total_upvotes: attributed volume and engagement signals, including inherited thread-context mentions
- daily_trend: daily Reddit activity and sentiment values
- top_mentions: representative high-engagement Reddit posts or comments from the selected period
Returns 200 with found: false when the symbol is supported but this service has no qualifying data in the requested window. Returns 404 only when the symbol is unsupported.
Path parameters
Crypto symbol (e.g., BTC, $ETH, SOL)
Crypto symbol (e.g., BTC, $ETH, SOL)
Query parameters
Start date in YYYY-MM-DD. Inclusive UTC date.
Start date in YYYY-MM-DD. Inclusive UTC date.
End date in YYYY-MM-DD. Inclusive UTC date. Omit to use the current UTC date.
End date in YYYY-MM-DD. Inclusive UTC date. Omit to use the current UTC date.
Deprecated v1 compatibility shorthand. Prefer from and to for reproducible UTC date windows.
Deprecated v1 compatibility shorthand. Prefer from and to for reproducible UTC date windows.
Response
Successful Response
Example response
{
"symbol": "ETH",
"name": "Ethereum",
"found": true,
"buzz_score": 72.4,
"mentions": 318,
"sentiment_score": 0.27,
"total_upvotes": 10422,
"unique_posts": 73,
"subreddit_count": 9,
"trend": "stable",
"bullish_pct": 43,
"bearish_pct": 19,
"period_days": 7,
"top_subreddits": [
{
"subreddit": "ethtrader",
"mentions": 91,
"count": 91
},
{
"subreddit": "cryptocurrency",
"mentions": 84,
"count": 84
}
],
"daily_trend": [
{
"date": "2026-02-24",
"mentions": 48,
"sentiment_score": 0.22,
"buzz_score": 56.4,
"bullish_pct": 58,
"bearish_pct": 21
},
{
"date": "2026-02-23",
"mentions": 42,
"sentiment_score": 0.19,
"buzz_score": 51.7,
"bullish_pct": 52,
"bearish_pct": 24
}
],
"top_mentions": [
{
"text_snippet": "ETH setup still looks strong into the next catalyst.",
"sentiment_score": 0.74,
"sentiment_label": "positive",
"upvotes": 1200,
"subreddit": "ethtrader",
"created_utc": "2026-02-24T09:15:00Z"
}
]
}