# Qibla Direction

The bearing to the Kaaba from any point, as a true great-circle heading — not the straight line a flat map suggests.

- Method: `GET`
- Path: `/v1/qibla`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `lat` | number | required | Latitude. |
| `lon` | number | required | Longitude. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "coordinates": { "latitude": -6.2088, "longitude": 106.8456 },
    "bearing": 295.15,
    "compass": "WNW",
    "distance_km": 7896.4
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```