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

# Health Check

> Check API status and connectivity

<Note>
  This endpoint does not require authentication.
</Note>

## Response

<ResponseField name="status" type="string" required>
  API status: `healthy` or `unhealthy`
</ResponseField>

<ResponseField name="api_version" type="string" required>
  Current API version
</ResponseField>

<ResponseField name="environment" type="string" required>
  Deployment environment: `production` or `development`
</ResponseField>

<ResponseField name="database" type="string" required>
  Database connection status: `connected` or `disconnected`
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.destined.ai/health
  ```

  ```typescript TypeScript theme={null}
  const result = await client.health.healthCheckHealthGet();
  console.log(result);
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "healthy",
    "api_version": "0.1.0",
    "environment": "production",
    "database": "connected"
  }
  ```
</ResponseExample>
