# UAE Crude Oil Production

How many barrels the UAE produced, month by month — the authoritative public series, in thousand barrels per day.

- Method: `GET`
- Path: `/v1/commodities/uae/crude-production`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `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/commodities/uae/crude-production \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "series_id": "INTL.53-1-UAE-TBPD.M",
    "unit": "thousand barrels per day",
    "observations": [
      { "period": "2026-06", "value": 3263 },
      { "period": "2026-05", "value": 3248 },
      { "period": "2026-04", "value": 3255 }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-21T04:05:00.000Z",
    "age_seconds": 42,
    "next_update_at": "2026-08-22T04:05:00.000Z"
  }
}
```