Skip to main content

Get started in three steps

Connect to our secure WebSocket API and start receiving real-time orderbook data from 52+ active exchanges across 70+ supported platforms with SSL/TLS encryption. Plus access our Unified Transaction APIs for multi-exchange transaction processing.

Step 1: Get your API key

Contact our support team to get your API key with access to:
  • 50GB monthly data limit
  • WebSocket-only connections
  • Real-time orderbook updates
  • 52+ active exchanges across 70+ supported platforms
Your API key will be in the format: demo_key_123
Track your data consumption in real-time:
curl "https://data.quantcite.com/api/v1/data-usage/YOUR_API_KEY"
Monitor usage regularly to avoid hitting the 50GB monthly limit.

Step 2: Connect to WebSocket

Connect to our secure WebSocket endpoint:
wss://data.quantcite.com/api/v1/ws
Note: Authentication is now done via WebSocket message, not URL parameter for enhanced security.
After connecting, send an authentication message:
{
  "type": "authenticate",
  "api_key": "YOUR_API_KEY"
}
You’ll receive a welcome message with session ID and tier information.

Step 3: Subscribe to data

Subscribe to real-time orderbook data for any trading pair:
{
  "type": "subscribe_aggregated",
  "symbol": "BTC/USDT",
  "exchanges": ["binance", "okx", "bybit"]
}
Or subscribe to all available exchanges:
{
  "type": "subscribe_aggregated", 
  "symbol": "BTC/USDT",
  "exchanges": "all"
}
Start receiving continuous orderbook updates:
{
  "type": "aggregated_orderbook_update",
  "symbol": "BTC/USDT",
  "data": {
    "bids": [...],
    "asks": [...],
    "market_stats": {
      "best_bid": 113393.9,
      "best_ask": 113400.0,
      "spread": 6.1
    }
  }
}

Next steps

Now that you’re connected, explore these integration options:
Need help? Check our API Reference for complete documentation.