# Email Disposable Check

Verify if an email address belongs to a temporary or disposable email provider.

`GET /api/check-email?email=user@example.com`

### Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `email` | string | Yes | The email address to verify. |

### Example Request

```bash
curl -X GET "https://developer.nabzclan.vip/api/check-email?email=test@example.com" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/json"
```

### Response Body

Returns a simplified JSON object indicating if the email is disposable.

```json
{
  "email": "user@example.com",
  "disposable": false
}
```

```json
{
  "email": "temp@throwawaymail.com",
  "disposable": true
}
```
