Stock Sentiment
Returns detailed sentiment analysis for a specific stock ticker.
Includes:
- Buzz score (0-100)
- Trend direction 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 breakdown (positive/negative/neutral)
- Daily trend data
- top_mentions: top explicit Reddit mentions from the selected period, ranked by upvotes
- top_subreddits: top subreddit contributors by attributed mention count
mentions includes inherited thread-context mentions. Use raw /mentions without include_inherited for explicit-only rows.
Returns 200 with found: false when the ticker is supported but this service has no qualifying data in the requested window. Returns 404 only when the ticker is unsupported.
Path parameters
Stock ticker symbol (e.g., TSLA, aapl, BRK.A, $GME)
Stock ticker symbol (e.g., TSLA, aapl, BRK.A, $GME)
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
{
"ticker": "TSLA",
"company_name": "Tesla, Inc.",
"found": true,
"buzz_score": 87.5,
"mentions": 342,
"sentiment_score": 0.23,
"total_upvotes": 15234,
"unique_posts": 45,
"subreddit_count": 8,
"trend": "rising",
"bullish_pct": 45,
"bearish_pct": 18,
"period_days": 7,
"top_subreddits": [
{
"subreddit": "wallstreetbets",
"mentions": 89,
"count": 89
},
{
"subreddit": "stocks",
"mentions": 67,
"count": 67
}
],
"daily_trend": [
{
"date": "2025-12-28",
"mentions": 52,
"sentiment_score": 0.31,
"buzz_score": 42.8,
"bullish_pct": 58,
"bearish_pct": 19
},
{
"date": "2025-12-27",
"mentions": 48,
"sentiment_score": 0.18,
"buzz_score": 38.5,
"bullish_pct": 46,
"bearish_pct": 21
}
],
"top_mentions": [
{
"text_snippet": "TSLA looking strong after...",
"sentiment_score": 0.85,
"sentiment_label": "positive",
"upvotes": 1234,
"subreddit": "wallstreetbets",
"created_utc": "2025-12-28T10:30:00"
}
]
}