# Phone Validation

Any phone number in the world — normalised to E.164, validated per country, typed (mobile, fixed, VoIP), with the human-readable formats.

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

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `phone` | string | required | The number, in any national or international form. |
| `region` | string | optional | ISO country code, for inputs without `+`. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "input": "0812-3456-7890",
    "valid": true,
    "possible": true,
    "e164": "+6281234567890",
    "international": "+62 812-3456-7890",
    "national": "0812-3456-7890",
    "country": "ID",
    "country_calling_code": "+62",
    "type": "MOBILE"
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```