Real-time Communication
WebSocket
Realtime Status
Get Realtime Service Status
Get the current status of the realtime communication service.
Returns information about:
- Service availability and health
- Supported protocols and features
- Active connection counts
- WebSocket endpoint configurations
get/api/v1/realtime/status
Response
Service status retrieved successfully
Example response
{
"status": "available",
"websocket_endpoints": {
"conversation": "/api/v1/realtime/conversation",
"dashboard_relay": "/api/v1/realtime/dashboard/relay"
},
"features": {
"conversation_streaming": true,
"dashboard_broadcasting": true,
"orchestrator_support": true,
"session_management": true
},
"active_connections": {
"conversation_sessions": 0,
"dashboard_clients": 0
},
"protocols_supported": [
"WebSocket"
],
"version": "v1"
}