Skip to content

Quickstart

Verify your first email address in a few minutes.

  1. Get an API key. In the dashboard, open API keys and create a key. Copy the secret key (it starts with sk_) — you won’t be able to see it again.

  2. Make a verification request. Replace sk_your_api_key with your key:

    Terminal window
    curl "https://api.verifymaill.com/v1/verify?email=jane@example.com" \
    -H "Authorization: Bearer sk_your_api_key"
  3. Read the response.

    {
    "email": "jane@example.com",
    "status": "deliverable",
    "sub_status": null,
    "score": 96,
    "disposable": false,
    "role": false,
    "free": false,
    "accept_all": false
    }

    See Understanding results for what each field means.