# WHO Health Indicators

A country's health statistics from the WHO — life expectancy at birth and the core indicator set, with the sex breakdown.

- Method: `GET`
- Path: `/v1/science/health`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `indicator` | string | optional | A GHO indicator code; `WHOSIS_000001` is life expectancy at birth. |
| `country` | string | required | ISO3 country code. |
| `max_age` | integer (seconds) | optional | Ask for data no older than this. Clamped to the product's own floor, so it can narrow the window but never force a refresh on every call. |

**Example request**

```bash
curl https://api.diraz.ae/v1/science/health \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "indicator": "WHOSIS_000001",
    "country": "IDN",
    "latest": { "year": 2021, "sex": "BTSX", "value": 67.6 },
    "points": [
      { "year": 2021, "sex": "MLE", "value": 66.1 },
      { "year": 2021, "sex": "FMLE", "value": 69.2 }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-22T04:05:00.000Z",
    "age_seconds": 42,
    "next_update_at": "2026-08-23T04:05:00.000Z"
  }
}
```