EOD Historical Data Data Parser & API
EOD Historical Data (EODHD) is an established financial-data vendor offering 30+ years of end-of-day price history, fundamentals and corporate actions across 60+ global exchanges, and StockAPIS extracts its data — OHLCV candles, adjusted closes, dividends, splits, fundamentals and earnings — through a single REST API. EODHD publishes its own official REST API, and StockAPIS normalizes it to the same schema you use for every other data source, so EODHD, Polygon and Alpha Vantage all return identical field names without separate integrations.
| Type | Financial data API / vendor |
|---|---|
| HQ | France (Paris) |
| Owner | EOD Historical Data SAS (EODHD) |
| Asset classes | Equities, ETFs, Mutual funds, Indices, Forex, Crypto, Bonds, Options |
| Coverage | 60+ exchanges, 150,000+ tickers worldwide |
| Scale | Established historical-data vendor, 30+ years depth |
| API access | Official API |
| Parse priority | ★★★★☆ |
| Official site | eodhd.com |
Platform Overview
Market Position
- A long-running historical-data vendor known for deep, decades-long EOD price archives
- 60+ exchanges and 150,000+ tickers spanning equities, ETFs, funds, forex, crypto and bonds
- Strong on data depth and breadth rather than ultra-low-latency tick streams
- Official public REST API, complemented by StockAPIS’s unified normalization layer
Data Coverage
StockAPIS exposes the full EODHD data surface:
- End-of-day history — 30+ years of daily OHLCV with raw and adjusted closes
- Intraday data — 1m/5m/1h bars for supported markets and recent windows
- Live / delayed quotes — latest price snapshots for tracked symbols
- Corporate actions — dividends, stock splits and earnings announcements
- Fundamentals — financial statements, ratios, valuation metrics and company profiles
- Reference data — exchange symbol lists, trading calendars and holiday schedules
Quick Start
import stockapis
client = stockapis.Client(api_key="your-api-key")
# 30+ years of end-of-day history for a symbol
history = client.eod_historical_data.get_historical_data(
symbol="AAPL.US",
from_date="2023-01-01",
to_date="2024-01-15",
)
print(f"{len(history)} bars · latest close ${history[0]['close']}")const { StockAPIS } = require("stockapis");
const client = new StockAPIS({ apiKey: "your-api-key" });
// End-of-day OHLCV with adjusted closes
const history = await client.eodHistoricalData.getHistoricalData({
symbol: "AAPL.US",
from: "2023-01-01",
to: "2024-01-15",
});
console.log(history[0].date, history[0].adjusted_close);Sample API Response
{
"success": true,
"data": [
{
"date": "2024-01-15",
"open": 185.59,
"high": 187.05,
"low": 184.93,
"close": 185.14,
"adjusted_close": 185.14,
"volume": 48591690,
"symbol": "AAPL.US",
"exchange": "US",
"currency": "USD"
},
{
"date": "2024-01-12",
"open": 184.37,
"high": 186.99,
"low": 183.63,
"close": 185.59,
"adjusted_close": 185.59,
"volume": 52341690,
"symbol": "AAPL.US",
"exchange": "US",
"currency": "USD"
}
],
"metadata": {
"symbol": "AAPL.US",
"exchange": "US",
"currency": "USD",
"period": "d",
"source": "eod-historical-data",
"timestamp": "2024-01-15T10:30:00.000Z"
}
}Use Cases
- Backtesting — test strategies against 30+ years of adjusted EOD history
- Fundamental & dividend research — combine price history with statements, ratios and dividend records
- Cross-vendor normalization — query EODHD alongside Polygon and Alpha Vantage on one schema
- Portfolio analytics — long-horizon performance, volatility and corporate-action-adjusted returns
Frequently Asked Questions
Does EOD Historical Data have an official API? Yes — EODHD provides an official public REST API for end-of-day, intraday, fundamental and reference data. StockAPIS wraps it in a unified schema so EODHD data matches every other source you pull.
What data can I get from EOD Historical Data through StockAPIS? End-of-day and intraday OHLCV, raw and adjusted closes, dividends, splits, earnings, fundamentals and exchange reference data across 60+ markets and 150,000+ tickers.
How far back does the historical data go? EODHD is known for deep archives — 30+ years of daily price history for major symbols, retrieved through the same StockAPIS endpoint you use for every other vendor.