# UAE Prayer Times

The five daily prayer times for any emirate, computed from solar position with the Gulf Region method behind the UAE's official timings.

- Method: `GET`
- Path: `/v1/prayer-times/uae`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `city` | string | optional | One of the seven emirate capitals, or `al-ain`. |
| `date` | string | optional | `YYYY-MM-DD`. |

**Example request**

```bash
curl https://api.diraz.ae/v1/prayer-times/uae \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "city": { "slug": "dubai", "name": "Dubai", "emirate": "Dubai" },
    "date": "2026-08-20",
    "method": "Gulf Region",
    "school": "shafi",
    "coordinates": { "latitude": 25.2048, "longitude": 55.2708, "elevation": 5 },
    "timezone_offset": 4,
    "times": {
      "imsak": "04:23",
      "fajr": "04:33",
      "sunrise": "05:51",
      "dhuhr": "12:25",
      "asr": "15:52",
      "sunset": "18:53",
      "maghrib": "18:53",
      "isha": "20:11",
      "midnight": "23:43"
    },
    "warnings": []
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```