Skip to main content
GET
http://localhost:8001
/
health
curl -X GET "http://localhost:8001/health"
{
  "status": "ok",
  "service": "auth"
}
This endpoint does not require authentication. It is used by load balancers, orchestration systems, and uptime monitors to verify the auth service is running.

Response

status
string
Service status. Returns ok when the auth service is operational.
service
string
Service identifier. Always auth.
curl -X GET "http://localhost:8001/health"
{
  "status": "ok",
  "service": "auth"
}