v1

latestOpenAPI 3.1.0MIT2026-08-0453113564.4 KB
News Stocks

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.

get/news/stocks/v1/stock/{ticker}

Path parameters

tickerstring required

Stock ticker symbol (e.g., TSLA, aapl, BRK.A, $GME)

Stock ticker symbol (e.g., TSLA, aapl, BRK.A, $GME)

Query parameters

fromstring date nullable

Start date in YYYY-MM-DD. Inclusive UTC date.

Start date in YYYY-MM-DD. Inclusive UTC date.

tostring date nullable

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.

daysinteger

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

tickerstring required

Stock ticker symbol

company_namestring nullable

Company name from ticker_reference (null if not found)

foundboolean required

Legacy v1 data-availability flag. true means this service has qualifying data for this asset/window. false means the asset is supported, but this service has no qualifying data for the requested window. Planned for removal in v2.

buzz_scorenumber nullable

Buzz Score (0-100). Asymptotic scaling above 50.

mentionsinteger nullable

Total mentions in the selected period

sentiment_scorenumber nullable

Average sentiment score (-1 bearish to +1 bullish)

positive_countinteger nullable

Deprecated. Prefer bullish_pct with mentions for public analysis; retained for v1 compatibility.

negative_countinteger nullable

Deprecated. Prefer bearish_pct with mentions for public analysis; retained for v1 compatibility.

neutral_countinteger nullable

Deprecated. Prefer bullish_pct, bearish_pct and mentions for public analysis; retained for v1 compatibility.

source_countinteger nullable

Number of sources with mentions

trend'rising' | 'falling' | 'stable' nullable

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).

bullish_pctinteger nullable

Percentage of bullish mentions

bearish_pctinteger nullable

Percentage of bearish mentions

period_daysinteger nullable

Analysis period in days

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"
    }
  ]
}