Disposable Email Identity

GET https://botblocker.pro/api/v1/disposable

This endpoint is designed to prevent users from registering on a website or application using disposable email addresses. It simultaneously checks if the email and domain are valid.

Note: This API request is free and does not count against your available request quota.

Query Parameters

Name
Type
Description

apikey*

string

Your API Key generated from BotBlocker.Pro Developer page.

email*

string

Email to indentity (e.g., [email protected]).

cURL Example

curl -X GET "https://botblocker.pro/api/v1/disposable?apikey={apikey}&email={email}"

Response

{
    "data": {
        "temporary": true,
        "dns": "104.22.12.236",
        "domain": "mailinator.com",
        "reason": "Detected as desposable email."
    },
    "meta": {
        "code": 200,
        "message": "OK"
    }
}

Last updated