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@dcexDescription
| Code | Type | Description |
|---|---|---|
symbol | STRING | Crypto Symbol |
time | STRING | Current market data time |
session | ENUM | Trade Session |
open | DECIMAL | Open Price |
high | DECIMAL | Highest Price |
low | DECIMAL | Lowest Price |
close | DECIMAL | Close Price |
volume | DECIMAL | Volume |
turnover | DECIMAL | Turnover |
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
}
}
