Quick Start

Make your first request

Sign up for UserCheck and get your API key.

Check out the Authentication page to see how to identify your requests.

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

Check a domain

GET https://api.usercheck.com/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.usercheck.com/domain/example.com

Last updated