System
System endpoints for connectivity checks, server time, trading times, and session management.
Overview
System endpoints provide essential utilities for WebSocket connectivity checks, server time synchronization, trading schedule information, and session management. Most system endpoints do not require authentication.
WebSocket & REST Endpoints
This category includes both WebSocket endpoints (ping, time, trading_times, logout) and REST endpoints (health). Most endpoints are public and do not require authentication, except for logout which requires an active session.
Available Endpoints
Ping
WebSocket
Ping the server to check connectivity.
Server Time
WebSocket
Get the current server time.
Trading Times
WebSocket
Get trading times for all symbols.
trading_timesView documentation →Logout
WebSocket
Logout from the current session.
logoutView documentation →Health Check
REST
Health check endpoint to verify service availability
/v1/healthView documentation →Use Cases
Connection Health Checks
Use the ping endpoint to verify WebSocket connectivity and measure latency between your application and the API server.
Time Synchronization
Get accurate server time to synchronize your application's clock and ensure consistent timestamp handling.
Trading Schedule
Check trading times to know when markets are open and plan your trading operations accordingly.
Session Management
Properly logout users to clean up server-side sessions and free up resources.