# Email Deliverability

Three checks, one answer: is the syntax real, is the domain disposable, and does it actually have a mail exchanger.

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

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `email` | string | required | The address to check. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "input": "someone@gmail.com",
    "valid_syntax": true,
    "email": "someone@gmail.com",
    "local_part": "someone",
    "domain": "gmail.com",
    "disposable": false,
    "mx_present": true,
    "mx_records": [{ "exchange": "gmail-smtp-in.l.google.com", "priority": 5 }],
    "deliverable": true
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```