mailboxlayer · Example Payload

Mailboxlayer Check Error Example

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

Mailboxlayer Check Error 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=not-an-email"
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json; charset=utf-8"
    },
    "body": {
      "success": false,
      "error": {
        "code": 211,
        "type": "invalid_email_address",
        "info": "The email address supplied for the email parameter is invalid."
      }
    }
  }
}