Dow Jones Data Parser & API
Dow Jones & Company is the institutional business-news publisher behind The Wall Street Journal, Barron’s, MarketWatch and Factiva, and StockAPIS extracts its business-news stream — headlines, article summaries, company and earnings coverage, economic reports and news sentiment — through a single REST API. Dow Jones does not offer a free public news API (its Factiva and Developer Platform feeds are enterprise, licensed and contract-gated), so StockAPIS parses and normalizes the published content into the same schema you use for every other news source, letting you query Dow Jones, Reuters and Bloomberg the same way.
| Type | Financial news & business intelligence service |
|---|---|
| HQ | United States (New York) |
| Owner | Dow Jones & Company (News Corp) |
| Asset classes | Business news, Market research, Company news, Economic reports, News sentiment |
| Coverage | Global business & financial news, all sectors |
| Scale | Top-tier institutional financial news brand (WSJ, Barron's, MarketWatch, Factiva) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.dowjones.com |
Platform Overview
Market Position
- One of the most authoritative business-news brands worldwide, owned by News Corp
- Parent of The Wall Street Journal, Barron’s, MarketWatch and the Factiva research archive
- A primary source for market-moving headlines, earnings coverage and economic analysis
- No open public news API — access is enterprise-licensed, so StockAPIS provides a unified normalized feed
Data Coverage
StockAPIS exposes the Dow Jones news surface as structured data:
- Headlines — real-time business and financial headlines across markets and sectors
- Article summaries — normalized title, summary, publish time, category and source URL
- Company news — symbol-tagged news, earnings coverage and analyst commentary
- Economic reports — macroeconomic releases, central-bank coverage and forecasts
- Sentiment — per-article and per-symbol sentiment scoring for signal generation
- Historical archive — back-dated business news and research for backtesting
Quick Start
import stockapis
client = stockapis.Client(api_key="your-api-key")
# Latest Dow Jones business headlines
news = client.dow_jones.get_news(category="markets", limit=5)
for article in news:
print(article["publishedAt"], "-", article["title"])const { StockAPIS } = require("stockapis");
const client = new StockAPIS({ apiKey: "your-api-key" });
// Company news tagged to a ticker
const headlines = await client.dow_jones.getCompanyNews({
symbol: "AAPL",
limit: 5,
});
headlines.forEach((a) => console.log(a.title, "·", a.sentiment));Sample API Response
{
"success": true,
"data": [
{
"title": "Dow Jones Industrial Average Climbs as Economic Data Beats Forecasts",
"summary": "The blue-chip index advanced after stronger-than-expected payrolls data eased recession concerns and lifted cyclical sectors...",
"publishedAt": "2024-01-15T10:30:00.000Z",
"category": "markets",
"source": "Dow Jones",
"symbols": ["DJI", "AAPL", "MSFT"],
"sentiment": "positive",
"url": "https://www.wsj.com/market-data/news/12345"
}
],
"metadata": {
"source": "dow-jones",
"timestamp": "2024-01-15T10:30:00.000Z",
"count": 1
}
}Use Cases
- News-driven trading — feed real-time Dow Jones headlines into event and momentum strategies
- Sentiment signals — score article sentiment by symbol to generate trading signals
- Market intelligence — monitor company, earnings and economic coverage in one dashboard
- Research & backtesting — pull historical business news to backtest news-impact models
Frequently Asked Questions
Does Dow Jones have an official API? Not a free public one. Dow Jones offers enterprise, licensed feeds (Factiva and the Dow Jones Developer Platform) under contract. StockAPIS parses the published content and delivers it in a unified, normalized news schema.
What data can I get from Dow Jones through StockAPIS? Headlines, article summaries, symbol-tagged company news, earnings and economic coverage, news sentiment, and historical archives — all on the same schema as other news sources.
Can I filter Dow Jones news by ticker or category? Yes — StockAPIS lets you query by category (markets, business, economy) and by symbol, returning only the matching headlines with sentiment metadata.