# FX Rates (ECB)

Today's ECB reference board — any base currency against any other, the rates the euro area's banks settle on.

- Method: `GET`
- Path: `/v1/fx/latest`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `base` | string | optional | Three-letter ISO code. |
| `symbols` | string | optional | Comma-separated ISO codes; omit for the whole board. |
| `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/fx/latest \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "base": "USD",
    "date": "2026-08-21",
    "amount": 1,
    "rates": { "EUR": 0.8548, "IDR": 17659 }
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-21T16:00:00.000Z",
    "age_seconds": 42,
    "next_update_at": "2026-08-22T16:00:00.000Z"
  }
}
```