GET email-address/…

Determines the availability and validity of a given email address.

This endpoint is useful for determining whether a given email address is still available. Please note that due to timing issues, a positive availability is never a guarantee that the address will still be available moments later.

Resource URL

https://www.drillster.com/api/2.1.1/email-address/{email}

Parameters

Field Type Description
email
required
String The email address to be evaluated.

Response

A 2.1.1 EmailAddress object, containing the availability and validity.

Example request

GET https://www.drillster.com/api/2.1.1/email-address/jane.doe%40example.com

Response

{
  "address": "jane.doe@example.com",
  "available": false,
  "valid": true
}