# PLN Electricity Tariffs

The per-kWh rate card by customer group — subsidised and non-subsidised households, business, industry, government, street lighting, and social.

- Method: `GET`
- Path: `/v1/utility/pln-tariffs`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `group` | string | optional | Group code prefix, e.g. `R-1` for households or `B` for business. Omits to the whole card. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "effective": "2026-07",
    "tariffs": [
      { "group": "R-1/TR", "segment": "Household, subsidised", "capacity": "450 VA", "idr_per_kwh": 415 },
      { "group": "R-1/TR", "segment": "Household, non-subsidised", "capacity": "1.300-2.200 VA", "idr_per_kwh": 1444.7 }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```