Stock Sentiment
Return the detailed news sentiment report for one stock ticker.
Includes:
- buzz_score: normalized news activity score for the selected period
- trend: activity momentum over the current 3 UTC days vs previous 3 UTC days using mentions/articles and source 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, source_count: coverage volume and source breadth signals
- daily_trend: daily news activity and sentiment values
- top_mentions: representative recent articles from the selected period, with source attribution
- top_sources: top source contributors by mention count
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,
"source_count": 8,
"trend": "rising",
"bullish_pct": 45,
"bearish_pct": 18,
"period_days": 7,
"top_sources": [
{
"source": "reuters",
"mentions": 89,
"count": 89
},
{
"source": "benzinga",
"mentions": 67,
"count": 67
}
],
"daily_trend": [
{
"date": "2026-03-05",
"mentions": 52,
"sentiment_score": 0.31,
"buzz_score": 42.8,
"bullish_pct": 58,
"bearish_pct": 19
},
{
"date": "2026-03-04",
"mentions": 48,
"sentiment_score": 0.18,
"buzz_score": 38.5,
"bullish_pct": 46,
"bearish_pct": 21
}
],
"top_mentions": [
{
"text_snippet": "TSLA looking strong after production update...",
"sentiment_score": 0.85,
"sentiment_label": "positive",
"source": "reuters",
"created_utc": "2026-03-05T10:30:00+00:00"
}
]
}