# Phone Normaliser

Turn every way an Indonesian mobile number gets typed into one canonical form, and name the network that issued it.

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

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `phone` | string | required | `0812…`, `+62812…`, `62812…`, with or without spaces and dashes. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "input": "0812-3456-7890",
    "valid": true,
    "e164": "+6281234567890",
    "national": "081234567890",
    "prefix": "0812",
    "carrier": "Telkomsel",
    "line_type": "mobile",
    "issues": []
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```