# UAE Economy

The UAE's macro profile — GDP, growth, population, inflation, unemployment, and trade, latest value plus a ten-year series, in one call.

- Method: `GET`
- Path: `/v1/places/uae/economy`

**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/places/uae/economy \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "economy": { "code": "ARE", "name": "United Arab Emirates" },
    "indicators": [
      {
        "id": "NY.GDP.MKTP.CD",
        "label": "GDP (current US$)",
        "unit": "USD",
        "latest_year": "2024",
        "latest_value": 552324919095.87,
        "history": [
          { "year": "2015", "value": 370293532149.19 },
          { "year": "2020", "value": 354307520092.51 },
          { "year": "2024", "value": 552324919095.87 }
        ]
      },
      {
        "id": "SP.POP.TOTL",
        "label": "Population, total",
        "unit": "persons",
        "latest_year": "2024",
        "latest_value": 10986400,
        "history": [
          { "year": "2015", "value": 9002592 },
          { "year": "2020", "value": 9891352 },
          { "year": "2024", "value": 10986400 }
        ]
      }
    ]
  },
  "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"
  }
}
```