> ## Documentation Index
> Fetch the complete documentation index at: https://meta.fluxdrop.pl/llms.txt
> Use this file to discover all available pages before exploring further.

# Flux Pass health check endpoint for monitoring

> The Flux Pass `GET /health` endpoint reports service name, version, and status for uptime monitoring, load balancer checks, and rate-limited probes.

## Health check

<div>
  <code className="font-bold text-lg">GET /api/health</code>
</div>

Returns the current status of the Flux Pass service. Use this for uptime monitoring and load balancer health checks.

<Note>
  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**.
</Note>

### Response `200`

```json theme={null}
{
  "service": "fluxpass",
  "version": "1.0.0",
  "status": "ok"
}
```

<ResponseField name="service" type="string">
  Service identifier. Always `fluxpass`.
</ResponseField>

<ResponseField name="version" type="string">
  Current API version.
</ResponseField>

<ResponseField name="status" type="string">
  Service status. `ok` when healthy.
</ResponseField>
