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

# Health

> Health check endpoint for isol8 server status and version.

Returns server liveness and running version.

<ResponseField name="status" type="string">
  Always `"ok"` when the server is healthy.
</ResponseField>

<ResponseField name="version" type="string">
  Server version string.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl http://localhost:3000/health
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "status": "ok",
    "version": "0.1.0"
  }
  ```
</ResponseExample>
