News Sentiment
Whether the financial-news headlines on a stock are positive or negative — AI-scored, with links.
/api/newsOverview
Recent financial-news headlines for any US ticker, each read by an AI model and scored bullish/bearish/neutral — with source links, publishers and dates, plus `bullSummary`/`bearSummary` recaps of the news angle. A real news data source (Yahoo Finance) complementing the X-based sentiment. Its own product (News Sentiment), with its own key. Cached ~30 min.
Use it toCheck whether the news flow on a stock is positive or negative — the press angle, not social.
Coverage
Call it
Send your ra_live_… key in the x-api-key header. Pick your language:
curl "https://raspberrytrades.com/api/news?ticker=NVDA" \
-H "x-api-key: ra_live_your_key_here"Parameters
| Parameter | Type | Description |
|---|---|---|
ticker | string | US stock symbol, e.g. NVDA (required) |
fresh | 0 | 1 | 1 = bypass the 30-min cache (optional) |
x-api-key | header | Your API key — news scope (required) |
{
"ticker": "NVDA",
"updatedAt": "2026-07-01T14:00:00Z",
"source": "yahoo-finance-rss",
"count": 20,
"sentiment": { "label": "bullish", "score": 0.34, "bullish": 13, "bearish": 2, "neutral": 5 },
"bullSummary": "Coverage highlights AI-chip demand and new design wins.",
"bearSummary": "A few pieces flag valuation and competition risk.",
"headlines": [
{
"title": "Nvidia extends AI lead with new datacenter deal",
"summary": "The chipmaker announced…",
"url": "https://www.reuters.com/...",
"source": "reuters.com",
"publishedAt": "2026-07-01T11:20:00Z",
"sentiment": "bullish"
}
]
}Create a free account, copy your ra_live_… key and make your first call to https://raspberrytrades.com/api/news.
Keep your key on your server — never ship it in front-end code.