# Samsat Jabar (PKB)

What a Samsat Jabar plate owes — both the on-time programme tariff and the non-programme one, with the road-insurance and registration lines.

- Method: `GET`
- Path: `/v1/vehicle-tax/jabar/{plate}`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `plate` | path segment | required | The vehicle's plate number, space-separated, West Java (Jabar) registered. |
| `colour` | string | optional | The plate (TNKB) colour: `1` black (default), `2` red — government, `3` yellow — commercial. |

**Example request**

```bash
curl https://api.diraz.ae/v1/vehicle-tax/jabar/%7Bplate%7D \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "plate": "D 1234 ABC",
    "brand": "HONDA",
    "model": "BRIO SATYA 1.2 E CVT CKD",
    "colour": "PUTIH",
    "owner_sequence": "1",
    "kind": "Roda 4",
    "year_made": "2023",
    "period_from": "2027-01-22",
    "period_to": "2028-01-22",
    "tax_due_date": "2027-01-22",
    "registration_expiry_date": "2029-01-22",
    "region": "KAB.BANDUNG II SRG",
    "program": { "pkb_pokok": 1505500, "pkb_denda": 0, "opsen_pkb_pokok": 993700, "opsen_pkb_denda": 0, "swdkllj_pokok": 143000, "swdkllj_denda": 0, "pnbp_stnk": 0, "pnbp_tnkb": 0, "total": 2642200 },
    "non_program": { "pkb_pokok": 1599400, "pkb_denda": 0, "opsen_pkb_pokok": 1055700, "opsen_pkb_denda": 0, "swdkllj_pokok": 143000, "swdkllj_denda": 0, "pnbp_stnk": 0, "pnbp_tnkb": 0, "total": 2798100 },
    "processed_at": "2026-08-20 07:31:39",
    "can_be_paid": true
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-20T00:31:39.000Z",
    "age_seconds": 42,
    "next_update_at": "2026-08-20T01:01:39.000Z"
  }
}
```