Skip to content

Real-time Crypto Quotes

General WSS information

  • Crypto subscriptions are subscribed in the form of symbol@market (for example: BTC-USDT@dcex). Multiple crypto subscriptions are separated by / (for example: BTC-USDT@dcex/ETH-USDT@dcex/DOGE-USDT@dcex).

WebSocket Limits

  • Each access IP is limited to a maximum of 1024 WebSocket connections.
  • Each WebSocket connection has a maximum of 200 subscription combinations. If this limit is exceeded, the subscription will be truncated.

Subscribe to crypto quotes

Subscribe to real-time crypto quote data streams. Crypto quotes provide live market statistics and current trading information that updates continuously 24/7.

Key Characteristics:

  • Real-time updates: Data is pushed immediately when market conditions change
  • Live pricing: Reflects current market prices and trading activity
  • 24/7 trading: Continuous trading without market closure
  • Continuous data: Updates occur throughout the day as trades happen
bash
wss://{base_url}/ws/market/v1/statistic?symbols={streams}

Example

bash
wss://{base_url}/ws/market/v1/statistic?symbols=BTC-USDT@dcex/ETH-USDT@dcex

Description

CodeTypeDescription
symbolSTRINGCrypto Symbol
timeSTRINGCurrent market data time
sessionENUMTrade Session
openDECIMALOpen Price
highDECIMALHighest Price
lowDECIMALLowest Price
closeDECIMALClose Price
volumeDECIMALVolume
turnoverDECIMALTurnover

JSON Example

json
{
    "type": "statistic",
    "data": {
        "symbol": "BTC-USDT",
        "time": "2025-05-30 15:58:17",
        "session": "trading",
        "open": 45506,
        "high": 45606.5,
        "low": 45396,
        "close": 45498.4,
        "volume": 125.45,
        "turnover": 5708234.56
    }
}