Market Sentiment
Returns the service-level News market sentiment snapshot across all tracked stocks when you want a single News-wide market state instead of per-ticker rankings. It includes service-wide buzz, sentiment split, activity trend, breadth metrics and the top drivers by current buzz_score.
buzz_score here means relative News market heat, not pure bullishness. It measures how hot overall stock news flow is versus News' own trailing 90-day baseline:
- around 50 = normal news activity
- higher = broader coverage than usual
- lower = quieter than usual
trend is 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).
Use sentiment_score, bullish_pct and bearish_pct for direction.
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
{
"buzz_score": 53.8,
"trend": "stable",
"mentions": 1298,
"unique_articles": 911,
"source_count": 44,
"active_tickers": 233,
"sentiment_score": 0.064,
"positive_count": 512,
"negative_count": 308,
"neutral_count": 478,
"bullish_pct": 39,
"bearish_pct": 24,
"trend_history": [
49.1,
50.4,
48.7,
52.2,
55.1,
54.3,
53.8
],
"drivers": [
{
"ticker": "AAPL",
"mentions": 87,
"buzz_score": 69.7,
"sentiment_score": 0.22
},
{
"ticker": "NVDA",
"mentions": 76,
"buzz_score": 67.3,
"sentiment_score": 0.31
}
]
}