Real-time market data delivery for global equities, FX, and crypto. Stream quotes and trades over WebSockets or pull snapshots over REST with sub-15ms delivery and full historical replay. Built for trading dashboards, algorithmic signals, and portfolio analytics.
Quote and trade streams delivered in real time to edge regions.
Equities, FX, and crypto tickers across 60+ exchanges.
Full-depth market replay for backtesting and audits.
All requests require an OAuth 2.0 access token exchanged from your client credentials.
Authorization: Bearer $ACCESS_TOKEN| Method | Path | Description |
|---|---|---|
| GET | /v2/quotes/{symbol} | Fetch the latest quote snapshot for a symbol. |
| GET | /v2/trades/{symbol} | Pull recent trades with venue and volume detail. |
| GET | /v2/candles/{symbol} | Retrieve OHLCV candles at any supported interval. |
| WS | /v2/market | Stream live quotes and trades over WebSocket. |
curl -X GET "https://api.finpulse.io/v2/quotes/AAPL" \ -H "Authorization: Bearer $ACCESS_TOKEN"
{
"status": "success",
"data": {
"symbol": "AAPL",
"price": 232.45,
"change": 1.28,
"changePercent": 0.55,
"bid": 232.4,
"ask": 232.5,
"timestamp": "2026-08-01T15:30:00Z"
},
"usage": {
"ms": 11
}
}