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

# Health check for a load balancer probe

> A liveness probe taking no credential and not rate limited. It does not check the database or any other dependency, and carries no version or configuration.

This is a liveness check for load balancers and uptime monitors. It takes no credential, is not rate limited, and always returns the same body while the process is serving. It does not check the database or any other dependency; use [Readiness check](/api-reference/operations/ready) for that.

The response carries no version, configuration or dependency information.

## Response

<ResponseField name="status" type="string" required>
  Always `ok`.
</ResponseField>

<RequestExample>
  ```bash cURL theme={"theme":{"light":"github-light","dark":"github-dark"}}
  curl --request GET "$MITHUNAI_URL/arukz/api/v1/health"
  ```

  ```python Python theme={"theme":{"light":"github-light","dark":"github-dark"}}
  import os, requests

  response = requests.get(f"{os.environ['MITHUNAI_URL']}/arukz/api/v1/health", timeout=10)
  response.raise_for_status()
  print(response.json())
  ```

  ```javascript JavaScript theme={"theme":{"light":"github-light","dark":"github-dark"}}
  const response = await fetch(`${process.env.MITHUNAI_URL}/arukz/api/v1/health`)
  console.log(await response.json())
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={"theme":{"light":"github-light","dark":"github-dark"}}
  { "status": "ok" }
  ```
</ResponseExample>
