Skip to main content

Health check

GET /api/health
Returns the current status of the Flux Pass service. Use this for uptime monitoring and load balancer health checks.
This endpoint is not prefixed with /api/ in the controller - it’s mounted at the root level as GET /health. Rate limited to 50 requests per 60 seconds.

Response 200

{
  "service": "fluxpass",
  "version": "1.0.0",
  "status": "ok"
}
service
string
Service identifier. Always fluxpass.
version
string
Current API version.
status
string
Service status. ok when healthy.