NewConnect Claude, Gemini, ChatGPT, and other AI agents to API Ninjas via our MCP server

Disposable Email Checker API

The Disposable Email Checker API allows you to check whether a given email address is from a disposable email provider.

(4.5)

From 4,177 users

600+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
314ms331ms358ms753ms1154ms

Didn't find what you were looking for? Suggest an improvement


/v1/disposableemailchecker GET

https://api.api-ninjas.com/v1/disposableemailchecker

Returns metadata for a given email address, including whether it is from a disposable email provider. We maintain a large database of hundreds of thousands of disposable domains and check against it for every email address.

Parameters

  • email  required

    Email address to check.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON object with the following fields or an error if the request is unsuccessful.

  • domain  string

    Domain of the email address.

  • email  string

    Email address.

  • is_disposable  boolean

    Whether the email address is disposable.

Sample Request Live Demo!

email

Try our APIs in the API playground

Sign up for a free API key to get started — no credit card required.

https://api.api-ninjas.com/v1/disposableemailchecker?email=asdf@ingitel.com

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON
{
    email:"asdf@ingitel.com",
    domain:"ingitel.com",
    is_disposable:true
}

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/disposableemailchecker?email=test@10minutemail.com" \ -H "X-Api-Key: YOUR_API_KEY"

If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.

Frequently Asked Questions

  • Yes, but you must have a premium subscription. Commercial use of the Disposable Email Checker API is not permitted on the free tier. See our pricing page to choose a plan that fits your needs.
  • Sign up for a free account to instantly get your API key, then pass it in the X-Api-Key header on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.
  • Your API requests will simply be denied once you hit your monthly quota — you will never be charged more than the plan you signed up for. To increase your quota, you can upgrade your plan any time on our pricing page.
  • The API responds with a standard HTTP status code and a JSON error message describing the problem. See our error codes reference for the full list of codes and how to resolve each one, or contact support if you need help.
  • It is ideal for blocking throwaway signups during user registration, reducing fraud and spam, and improving deliverability by flagging temporary inboxes before you send. For deeper validation you can pair it with the Validate Email API or check mail server records with the MX Lookup API.
  • Send a GET request to the /v1/disposableemailchecker endpoint with the required email parameter, and the API checks it against a database of hundreds of thousands of known disposable email domains. See the API catalog for related tools.
  • The response is a JSON object containing the email you submitted, its domain, and an is_disposable boolean indicating whether the address comes from a disposable provider. If a request is unsuccessful, an error is returned instead (see error codes).