Documentation

Developer documentation for Check365 APIs, SDKs, wrappers, and integrations.

Api Reference

Public Disposable Email Checker API


Check365 has a public Disposable Email Checker API endpoint that lets developers, platforms, forms, SaaS apps, and lead capture systems find out if an email address is from a throwaway or short-lived email service. This endpoint is helpful for lowering the number of bogus signups, curbing abuse, enhancing the quality of leads, making forms more secure, and keeping email workflows safe against low-intent or non-persistent addresses that people often use to get around registration systems.

Authentication

This endpoint is public and does not require an api_key.

Endpoint

GET https://api.check365.io/api/public/disposable-check?email=[EMAIL]

Request parameters

  • email (string): The email address to check.

Example request

curl "https://api.check365.io/api/public/disposable-check?email=test@example.com"

Response:

  • success (boolean): Indicates whether the request was successful.
  • data (object): The result returned for the checked email address.
  • > email (string): The email address that was checked.
  • > isDisposable (boolean): Indicates whether the email address belongs to a disposable email service.
  • message (string): A message describing the disposable check result.

Example response

{
  "success": true,
  "data": {
    "email": "test@example.com",
    "isDisposable": false
  },
  "message": "The email is not disposable"
}
Previous
Authentication