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.

{
    "name"="Wilson",
    "owner": {
        "id": "sha7891bikojbkreuy",
        "name": "Samuel Passet",
    "species": "Dog",}
    "breed": "Golden Retriever",
}

A request on the domain endpoint will return the following results:

{
    "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