# Market Status

Is the exchange open? NYSE, Nasdaq, LSE, IDX, DFM, and ADX — local clock, weekly schedule, and holidays, computed.

- Method: `GET`
- Path: `/v1/market/status`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `exchange` | string | optional | `nyse`, `nasdaq`, `lse`, `idx`, `dfm`, or `adx`. Omit for all six. |

**Example request**

```bash
curl https://api.diraz.ae/v1/market/status \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "exchanges": [
      {
        "exchange": "dfm",
        "name": "Dubai Financial Market",
        "country": "AE",
        "timezone": "Asia/Dubai",
        "local_date": "2026-08-21",
        "local_time": "12:00",
        "weekday": "Fri",
        "is_open": false,
        "closed_reason": "weekend",
        "sessions": [{ "opens_at": "10:00", "closes_at": "15:00" }]
      }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```