Quick Start

Make your first request

To make your first request, send a Get request to the domain endpoint.

Check a domain

GET https://api.mailcheck.ai/domain/example.com

Check the domain example.com.

{
    "status": 200,
    "domain": "example.com",
    "mx": false,
    "disposable": false,
    "public_domain": false,
    "did_you_mean": null
}

Explore the domain endpoint in details or try our email endpoint.

Take a look at how you might call our API using different languages:

curl https://api.mailcheck.ai/domain/example.com

Last updated