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

# GET /health

> Health check endpoint. Always accessible without authentication.

<ParamField path="method" type="GET">
  `/health`
</ParamField>

**Authentication:** Not required (always public)

## Response

```json 200 OK theme={null}
{
  "status": "ok",
  "version": "0.21.4"
}
```

| Field     | Type   | Description                         |
| --------- | ------ | ----------------------------------- |
| `status`  | string | Always `"ok"` if server is running. |
| `version` | string | Server version.                     |

## Example

```bash theme={null}
curl http://localhost:8080/health
```
