Introduction

Welcome to the EmailCrawlr API

You can use this API to get rich data about contact information and domain names.

Authenticationx-api-key: <Your API Key>
GET

Get Email

This endpoint retrieves a specific email. It is possible that the email is not in the database yet.

Query parameters

email
Required · The address to receive information about.
Request
GET /v2/email
x-api-key: <Your API Key>
email: {email}
Response
{
  "personal": false,
  "verified": false,
  "domain": "example.test"
}
GET

Find Email

This endpoint tries to find a specific email. A result may not always be available for the person provided.

URL parameters

full_name
Required · First and last name.
domain
Required · The person’s domain name.
Request
GET /v2/email/find
full_name: {full_name}
domain: {domain}
Response
{
  "domain": "example.test",
  "name": "Provided Name",
  "probability": 0.8
}
GET

Verify Email

Check an email address’s deliverability. The archived endpoint checks MX records as well as email receipt.

Response
{
  "mx_set": true,
  "valid_mx": true,
  "email_sendable": true,
  "accepts_all_emails": false
}
GET

Get Domain

Retrieve domain details, its email pattern, location and known email results.

Request
GET /v2/domain
domain: {domain}