Get live OHLC candle data for a pair
Subscribe to pair's chart
- base url: ws://api.dexcheck.ai/v1/ws?x-api-key=your_api_key
- sample subscribe message (SEND)
{ "type": "topic", "topic": "chart", "data": { "pair": "4w2cysotX6czaUGmmWg13hDpY4QEMG2CzeKYEQyK9Ama", "chain": "sol", "tf": "15m" } }
- sample subscribe success message (RECV)
{ "type": "subscribed", "topic": "chart", "data": { "subscription_id": "da67a8d2-a529-4660-84d2-78d2fb3c33f5" } }
- sample response message (RECV)
{ "type": "message", "topic": "chart", "data": { "timestamp": 1756125900, "open": 0.2169977623837747, "close": 0.21633460421041284, "high": 0.21743844585861258, "low": 0.21633460421041284, "volume": 2390.081126154782 } }
- sample unsubscribe message (SEND)
{ "type": "unsubscribe", "topic": "chart", "subscription_id": "da67a8d2-a529-4660-84d2-78d2fb3c33f5" }
Note: Available chains are eth, bsc, base, solana