Overview
Public market data available to all users:- Best Bid/Offer (BBO) - Current best prices
- L2 Order Book - Full depth of market
- Trades - Executed transactions for your account
Required Scopes
| Scope | Data Access |
|---|---|
read:marketdata | BBO, streaming market data |
read:l2marketdata | Full L2 order book depth |
REST API Endpoints
Get Best Bid/Offer
Retrieve the current best bid and offer for a symbol:Get L2 Order Book
Retrieve the full order book depth:Streaming Market Data (gRPC)
For real-time updates, use the gRPC Market Data Stream.Subscribe to Market Data
Best Practices
Rate Limits
- REST endpoints are subject to rate limits
- Use streaming (gRPC) for real-time data to reduce API calls
- Cache reference data locally
Connection Management
- Implement reconnection logic for streaming connections
- Handle network interruptions gracefully
- Use heartbeats to detect connection issues
Data Handling
- Validate timestamps to detect stale data
- Handle gaps in sequence numbers appropriately
- Store historical data locally for analysis

