Priceworld Data Feeds & API
Programmatic access to real-time and historical financial, economic, and alternative market data through the Priceworld API.
Priceworld operates as an application service provider (ASP) featuring software for retrieving, managing, and distributing financial, economic, and alternative market data. Our data feeds power trading desks, analytics platforms, and fintech applications worldwide.
API Capabilities
REST API
Request any instrument, time series, or financial dataset via simple HTTP endpoints. JSON responses with comprehensive documentation and SDKs for Python, JavaScript, and more.
WebSocket Streaming
Subscribe to real-time price updates with sub-second latency. Ideal for live dashboards, trading interfaces, and monitoring systems.
Historical Downloads
Bulk download historical data in CSV or JSON format. Full tick, minute, daily, or weekly granularity going back 20+ years.
Quick Start
GET /api/v1/quote?symbol=AAPL
Authorization: Bearer pw_live_xxxxx
Response:
{
"symbol": "AAPL",
"price": 305.93,
"change": -1.78,
"changePercent": -0.58,
"volume": 51800000,
"timestamp": "2026-08-17T20:00:00Z"
}GET /api/v1/history?symbol=SPX&interval=1d&range=1y
Response:
{
"symbol": "SPX",
"interval": "1d",
"data": [
{ "date": "2026-08-13", "open": 7742.8, "high": 7769.4, "low": 7731.6, "close": 7751.9 },
{ "date": "2026-08-14", "open": 7754.2, "high": 7798.1, "low": 7748.9, "close": 7785.5 },
...
]
}Data Coverage
Priceworld API access is available with Priceworld Enterprise plans. Contact us for custom data packages, rate limits, and integration support.