# Vehicle Plate Decoder

Read an Indonesian police registration plate: the prefix letter names the registration region, and the serial format is validated.

- Method: `GET`
- Path: `/v1/id/plate/{plate}`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `plate` | path segment | required | The prefix letter with or without the serial, e.g. `B` or `B-1234-XYZ`. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "prefix": "B",
    "province": "DKI Jakarta",
    "areas": ["Kota Jakarta", "Kota Depok", "Kota Bekasi"],
    "valid_format": true,
    "serial": { "number": 1234, "letters": "XYZ" },
    "notes": ["The serial's first letter encodes the vehicle class; the area list is the registration region."]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```