health
Health
Basic Health Check
Basic health check endpoint that returns 200 if the server is running. Used by load balancers for liveness checks.
get/api/v1/health
Response
Service is healthy and running
Example response
{
"active_sessions": 3,
"details": {
"api_version": "v1",
"service": "rtagent-backend"
},
"message": "Real-Time Audio Agent API v1 is running",
"session_metrics": {
"active": 3,
"connected": 5,
"disconnected": 2
},
"status": "healthy",
"timestamp": 1691668800,
"version": "1.0.0"
}