Live data from 50+ exchanges

Financial APIs
Built for Developers

Real-time market data, historical prices, and financial news through a single, developer-friendly API. Start building in minutes, scale to millions.

Enterprise Security
Sub-10ms Latency
Global Coverage
~/EodStockAPI-api
$ npm install @EodStockAPI/sdk
✓ Package installed successfully
$ node example.js
// Real-time stock quote
const data = await md.stocks.quote('AAPL');
→ AAPL: $175.43 (+2.15%)
Response time: 8ms

Developer Experience First

Built by developers, for developers. Every decision optimized for your productivity.

Instant Setup

One command to install. One line to authenticate. Start fetching data in under 60 seconds.

npm install @EodStockAPI/sdk

Type-Safe SDKs

Full TypeScript support with auto-completion. No more guessing API responses.

JavaScript/TypeScript
Python
Go, Rust, PHP +more

WebSocket Streams

Real-time data streams with automatic reconnection and backpressure handling.

Live
8ms avg latency

Powerful. Simple. Consistent.

One unified API for all your financial data needs. From real-time quotes to historical analysis.

Real-time Market Data

Live quotes, trades, and order book data from 50+ global exchanges

Historical Data

30+ years of OHLCV data, splits, dividends, and corporate actions

Financial News

AI-powered sentiment analysis and real-time news aggregation

GET /v1/stocks/AAPL/quote
{
"symbol": "AAPL",
"price": 175.43,
"change": +2.15,
"changePercent": +1.24,
"volume": 64842100,
"timestamp": "2024-01-15T16:00:00Z"
}
Response: 200 OK • 8ms
WebSocket Connected
Receiving real-time updates

Simple, Usage-Based Pricing

Start free, pay as you grow. No hidden fees, no surprise bills.

Developer

$0 /month

Perfect for testing and prototyping

1,000 API calls/month
15-minute delayed data
Historical EOD data
Community support
All SDKs included
MOST POPULAR

Professional

$99 /month

For production applications

100,000 API calls/month
Real-time data
WebSocket streaming
Financial news with sentiment
Priority support

Enterprise

Custom

For large-scale applications

Unlimited API calls
Direct exchange feeds
Custom SLA
Dedicated infrastructure
24/7 phone support

Usage Calculator

1K 1M
$99
per month
50,000 API calls included

Try Our API Live

Test our endpoints right here. No signup required.

API Request

Live Playground
Authorization: Bearer your-api-key
Content-Type: application/json

Response

200 OK 12ms
{
"symbol": "AAPL",
"name": "Apple Inc.",
"price": 175.43,
"change": +2.15,
"changePercent": +1.24,
"dayHigh": 176.50,
"dayLow": 173.28,
"volume": 64842100,
"marketCap": 2745632000000,
"timestamp": "2024-01-15T20:59:45Z"
}
Response Size: 1.2KB

Implementation Examples

JavaScript
const response = await fetch(
  'https://api.eod-stock-api.org/v1/stocks/AAPL/quote',
  {
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY'
    }
  }
);

const data = await response.json();
console.log(data.price);
Python
import requests

url = "https://api.eod-stock-api.org/v1/stocks/AAPL/quote"
headers = {"Authorization": "Bearer YOUR_API_KEY"}

response = requests.get(url, headers=headers)
data = response.json()
print(data["price"])
cURL
curl -X GET \
  https://api.eod-stock-api.org/v1/stocks/AAPL/quote \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Comprehensive Resources

Everything you need to integrate and scale successfully.