# Terbilang

An amount written out in Indonesian words, with the se- prefixes and irregular teens that mark a text as written by a person rather than a machine.

- Method: `GET`
- Path: `/v1/id/terbilang`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `amount` | number | required | The figure to write out. |
| `currency` | string | optional | Appended as a unit, e.g. `rupiah`. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "amount": 2500000,
    "words": "dua juta lima ratus ribu",
    "formatted": "dua juta lima ratus ribu rupiah",
    "numeric": "2.500.000"
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```