# Overtime Calculator

Upah lembur per PP 35/2021 — the 1/173 hourly basis, the 1.5x/2x weekday ladder, and the 2x/3x/4x rest-day ladder, hour by hour.

- Method: `GET`
- Path: `/v1/payroll/overtime`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `monthly_wage` | number | required | The wage the 1/173 hourly basis is taken from. |
| `hours` | number | required | Overtime hours; a fractional hour is paid pro-rata. |
| `day_type` | string | optional | `weekday` (default) or `rest` — weekly rest and holidays share one ladder. |
| `workday_hours` | integer | optional | 8 for a 5-day week, 7 for a 6-day one — where the rest-day ladder climbs. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "hourly_wage_idr": 28901.73,
    "day_type": "weekday",
    "hours": [
      { "hour": 1, "multiplier": 1.5, "pay_idr": 43353 },
      { "hour": 2, "multiplier": 2, "pay_idr": 57803 }
    ],
    "total_idr": 101156,
    "exceeds_daily_cap": false
  },
  "meta": { "request_id": "req_7Q2fK4mZ" }
}
```