# Cash Denomination Breakdown

Split any amount into the banknotes and coins in circulation — the minimum piece count a cash-out operation wants.

- Method: `GET`
- Path: `/v1/payments/denominations`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `amount` | integer | required | Whole rupiah. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "amount": 1234500,
    "pieces": [
      { "value": 100000, "count": 12 },
      { "value": 20000, "count": 1 },
      { "value": 10000, "count": 1 },
      { "value": 5000, "count": 1 }
    ],
    "piece_count": 15,
    "unallocated_idr": 0
  },
  "meta": { "request_id": "req_7Q2fK4mZ" }
}
```