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

# Health check

> Check whether your Collabase instance is running.

Returns the status of your Collabase instance. No authentication required. Use this for uptime monitoring or to verify that a deployment was successful.

## Response

<ResponseField name="status" type="string">Always `ok` when the service is running.</ResponseField>
<ResponseField name="version" type="string">The deployed version of Collabase.</ResponseField>
<ResponseField name="timestamp" type="string">Current server time in ISO 8601 format.</ResponseField>

<RequestExample>
  ```bash theme={"dark"}
  curl "https://your-collabase-domain/api/health"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={"dark"}
  {
    "status": "ok",
    "version": "1.4.2",
    "timestamp": "2026-04-02T21:00:00.000Z"
  }
  ```
</ResponseExample>
