# Provincial Minimum Wage (UMP)

The 2026 minimum wage for all 38 provinces, with its Kemendagri code and the year's increase — the number every payroll floor is checked against.

- Method: `GET`
- Path: `/v1/labor/minimum-wage`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `province_code` | string | optional | Two-digit Kemendagri province code, e.g. `31` for DKI Jakarta. Omits to all 38. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "year": 2026,
    "provinces": [
      { "province_code": "11", "province": "Aceh", "monthly_idr": 3685616, "increase_percent": null, "carried_over": true },
      { "province_code": "31", "province": "DKI Jakarta", "monthly_idr": 5729876, "increase_percent": 6.17, "carried_over": false },
      { "province_code": "32", "province": "Jawa Barat", "monthly_idr": 2317601, "increase_percent": 5.77, "carried_over": false }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```