Email Disposable Check
Verify if an email address belongs to a temporary or disposable email provider.
GET /api/[email protected]
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
email |
string | Yes | The email address to verify. |
Example Request
curl -X GET "https://developer.nabzclan.vip/api/[email protected]" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Accept: application/json"
Response Body
Returns a simplified JSON object indicating if the email is disposable.
{
"email": "[email protected]",
"disposable": false
}
{
"email": "[email protected]",
"disposable": true
}