Reuters Data Parser & API
Reuters is one of the world’s largest global news agencies, publishing 24/7 financial and macro coverage across 200+ countries, and StockAPIS extracts its market-moving news — headlines, summaries, full article bodies, tagged tickers, categories, sentiment scores and timestamps — through a single REST API. Reuters offers official news feeds only through enterprise licensing (Reuters Connect / Reuters News API), so there is no open public developer API; StockAPIS normalizes Reuters articles into the same news schema you use for every other source, so you query Reuters, Bloomberg and CNBC the same way without maintaining separate integrations.
| Type | Financial news service |
|---|---|
| HQ | United Kingdom / Global (Thomson Reuters) |
| Owner | Thomson Reuters Corporation |
| Asset classes | Equities news, Macro & economic news, FX & commodities news, Corporate filings & earnings, Central bank coverage |
| Coverage | 200+ countries, 16 languages, 24/7 global newsroom |
| Scale | Top-5 global financial news site by traffic |
| API access | Partial / limited API |
| Parse priority | ★★★★★ |
| Official site | www.reuters.com |
Platform Overview
Market Position
- One of the largest and most-cited global news agencies, owned by Thomson Reuters
- 24/7 newsroom covering equities, macro, FX, commodities and central banks across 200+ countries
- A primary source for breaking market-moving headlines and economic releases
- No open public developer API — official feeds require enterprise licensing; StockAPIS provides unified normalized access
Data Coverage
StockAPIS exposes the full Reuters news surface as structured data:
- Headlines & summaries — real-time breaking news titles and short abstracts
- Full article bodies — complete story text with author, byline and publish/update timestamps
- Ticker tagging — articles linked to the equities, indices and instruments they mention
- Categories & regions — earnings, M&A, macro, central banks, sector and regional classification
- Sentiment — per-article sentiment label and numeric score for signal generation
- Economic & policy news — central-bank decisions, indicators and policy updates
Quick Start
import stockapis
client = stockapis.Client(api_key="your-api-key")
# Latest Reuters headlines for a ticker
news = client.reuters.get_latest_news(symbol="AAPL", limit=10)
for article in news:
print(f"{article['publishedAt']} · {article['headline']}")
print(f" sentiment: {article['sentiment']} ({article['sentimentScore']})")const { StockAPIS } = require("stockapis");
const client = new StockAPIS({ apiKey: "your-api-key" });
// Breaking Reuters news across global markets
const news = await client.reuters.getLatestNews({ symbol: "AAPL", limit: 10 });
news.forEach((a) => {
console.log(`${a.publishedAt} — ${a.headline} [${a.sentiment}]`);
});Sample API Response
{
"success": true,
"data": [
{
"id": "123456789",
"headline": "Apple Reports Strong Q4 Results, Shares Rise",
"summary": "Apple Inc. reported fourth-quarter earnings that exceeded analyst expectations, with strong iPhone sales driving revenue growth.",
"body": "Apple Inc. (NASDAQ: AAPL) today announced financial results for its fiscal 2024 fourth quarter...",
"symbol": "AAPL",
"category": "earnings",
"region": "north_america",
"sentiment": "positive",
"sentimentScore": 0.82,
"author": "Reuters Staff",
"publishedAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:30:00.000Z",
"url": "https://www.reuters.com/technology/apple-reports-strong-q4-results-shares-rise-2024-01-15/",
"tags": ["earnings", "technology", "iphone", "revenue"],
"impact": "high"
}
],
"metadata": { "source": "reuters", "timestamp": "2024-01-15T10:30:00.000Z" }
}Use Cases
- News-driven trading — react to breaking Reuters headlines and economic releases with low latency
- Sentiment & NLP signals — feed per-article sentiment scores and full bodies into alpha and event-detection models
- Market & macro research — track central-bank decisions, earnings and M&A across global regions on one schema
- Risk & compliance monitoring — surveil corporate, political and macro news for portfolio and counterparty risk
Frequently Asked Questions
Does Reuters have an official API? Partially. Reuters provides news feeds through enterprise products (Reuters Connect / Reuters News API) that require commercial licensing — there is no open public developer API. StockAPIS provides normalized access to Reuters news in a unified schema alongside every other source.
What data can I get from Reuters through StockAPIS? Headlines, summaries, full article bodies, ticker tags, categories, regions, author, publish/update timestamps, per-article sentiment scores and tags for global financial news.
Can I get Reuters news in real time? Yes — StockAPIS surfaces breaking Reuters headlines and articles as they publish, so you can stream market-moving news into trading and monitoring workflows.