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

# Health Check

> Check API health status

## Description

Health check endpoint to verify the API is running and accessible.

## Response

<ResponseField name="message" type="string">
  Health status message
</ResponseField>

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

<ResponseField name="time" type="string">
  Current server time (ISO format)
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/healthcheck"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://partners-backend-1038109371738.europe-west1.run.app/api/v1/healthcheck'
  );
  const data = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://partners-backend-1038109371738.europe-west1.run.app/api/v1/healthcheck'
  )
  data = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "message": "OK",
    "version": "0.1.0",
    "time": "2024-01-20T15:30:00Z"
  }
  ```
</ResponseExample>
