# UAE Indices



The UAE's two headline market benchmarks — the DFM General Index and the FTSE ADX General Index.



## DFM General Index

The Dubai Financial Market's own benchmark — the level every dirham-denominated portfolio in the emirate is measured against.

- Method: `GET`
- Path: `/v1/market/uae/dfm-general`

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

**Example response**

```json
{
  "data": {
    "symbol": "DFM:DFMGI",
    "name": "DFM General Index",
    "exchange": "DFM",
    "type": "index",
    "currency": "AED",
    "close": 5856.55,
    "change": 17.02,
    "change_percent": 0.29,
    "open": 5839.53,
    "high": 5868.56,
    "low": 5838.93,
    "volume": null,
    "market_cap": null,
    "pe_ratio": null,
    "eps": null,
    "sector": null,
    "description": null,
    "logo": null
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-21T09:30:00.000Z",
    "age_seconds": 30,
    "next_update_at": "2026-08-21T09:35:00.000Z"
  }
}
```

## FTSE ADX General Index

Abu Dhabi's headline benchmark — the FTSE-calculated general index of the Abu Dhabi Securities Exchange.

- Method: `GET`
- Path: `/v1/market/uae/adx-general`

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

**Example response**

```json
{
  "data": {
    "symbol": "ADX:FADGI",
    "name": "FTSE ADX General Index",
    "exchange": "ADX",
    "type": "index",
    "currency": "AED",
    "close": 10004.43,
    "change": -71.23,
    "change_percent": -0.71,
    "open": 10075.66,
    "high": 10075.66,
    "low": 9989.0,
    "volume": 183556609,
    "market_cap": null,
    "pe_ratio": null,
    "eps": null,
    "sector": null,
    "description": null,
    "logo": null
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-21T09:30:00.000Z",
    "age_seconds": 30,
    "next_update_at": "2026-08-21T09:35:00.000Z"
  }
}
```