Vessel WebSocket
Base Endpoint
Mainnet environment: trade.vessel.finance/ws
Connection Validity
Expect to be automatically disconnected after the 24-hour mark. Reconnection is required for continuous communication.
Ping and Pong Mechanism
If the client doesn't receive a pong string in response to its ping, it should consider the connection broken and attempt to reconnect.
List Order and Timestamps
All timestamps provided in WebSocket messages are in milliseconds and follow the UTC time zone, unless explicitly noted otherwise.
Case Sensitivity
Subscription/Unsubscription
General Payload
Example Channel-Specific Subscription Payload
{
"type": "subscribe",
"channel": "orderbook",
"id": "unique_subscription_id",
"symbol": "WBTCUSDT"
}
Example Channel-Specific Unsubbscription Payload
{
"type": "unsubscribe",
"channel": "orderbook",
"id": "unique_subscription_id",
"symbol": "WBTCUSDT"
}
Limitation
Recent Trades Channel: The initial limit is set to 20 data points.
Order Book Channel: The initial limit is set to 1000 data points for both bid and ask sides.
Modified at 2024-08-22 06:01:50