Common email providers check api

Search for a domain or email (click me)

Just a moment

Waiting for input

Live-API-Answer:

Waiting for input

Rest API (More on Github)

This repository also provide free Rest API endpoint. The api endpoints serves up-to-dated data in the master branch.

When your pull request is merged, https://freemail-providers.s1mplexx.eu will be automatically build and deploy the new version.

List all email providers

Request (GET)

https://freemail-providers.s1mplexx.eu/api/all

Response (200, Content-Type: application/json)

[
  ...
  "aol.com",
  ...
  "gmail.com",
  ...
]

Query provider by email address or domain

Request

https://freemail-providers.s1mplexx.eu/api/ |email or domain|

Response

200 - when email or domain is in the provider list
{"domain":"gmail.com","status":"found"}
404 - when email or domain is not in the provider list
{"domain":"google.com","status":"notinlist"}
{"domain":"","status":"error-empty-request"}

Example request

https://freemail-providers.s1mplexx.eu/api/foo@gmail.com
https://freemail-providers.s1mplexx.eu/api/gmail.com
https://freemail-providers.s1mplexx.eu/api/bar.com
--> More on Github