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

# GET /health — API status check

> Verify that the Climatifai / AgroRisk API is reachable and accepting requests. Returns HTTP 200 with status ok when the service is up.

The health endpoint gives you a fast, lightweight way to confirm that the API is reachable and accepting requests. It returns immediately with no side effects, making it suitable as a polling target for uptime monitors or a quick sanity check before sending data requests.

## Endpoint

```text theme={null}
GET api.climatifai.com/health
```

## Parameters

This endpoint accepts no query parameters, path parameters, or request body.

## Response

A successful response always returns HTTP `200` with the following JSON body:

```json theme={null}
{ "status": "ok" }
```

<ResponseField name="status" type="string" required>
  Always `"ok"` when the service is running.
</ResponseField>

## Example

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "ok"
  }
  ```
</ResponseExample>
