mailboxlayer · Example Payload

Mailboxlayer Check Typo Example

EmailEmail VerificationEmail ValidationSMTPMX RecordsCatch-All DetectionDisposable EmailFree Email ProviderRole AddressQuality ScoreapilayerPublic APIs

Mailboxlayer Check Typo Example is an example object payload from mailboxlayer, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://apilayer.net/api/check?access_key=YOUR_ACCESS_KEY&email=jane.doe@gnail.com"
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json; charset=utf-8"
    },
    "body": {
      "email": "jane.doe@gnail.com",
      "did_you_mean": "jane.doe@gmail.com",
      "user": "jane.doe",
      "domain": "gnail.com",
      "format_valid": true,
      "mx_found": false,
      "smtp_check": false,
      "catch_all": null,
      "role": false,
      "disposable": false,
      "free": false,
      "score": 0.32
    }
  }
}