BotBlocker.Pro
  • Introduction
  • Blocker
  • Shortlink
  • Lookup IP Address
  • Email Validator
  • Disposable Email Identity
  • Phone Number Identity
  • Retrieves the Current API Usage Statistics
  • Information
    • Affiliate
    • Reseller
    • FAQs
    • Service Status
    • Report Abuse
  • Trust & Legal
    • Privacy Policy
    • Terms of Services
Powered by GitBook
On this page

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., user@mailinator.com).

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"
    }
}
{
    "meta": {
        "code": 400,
        "message": {
            "email": "The email field must contain a valid email address."
        }
    }
}
{
    "meta": {
        "code": 401,
        "message": "Unauthorized, an valid API Key needed!"
    }
}
PreviousEmail ValidatorNextPhone Number Identity

Last updated 9 months ago