logo
EmailEmail Verification Inquiry

Email Verification Inquiry

Returns the results of an email verification job by its ID.

Pricing: Free (0 credits).

curl -X GET "https://v3-api.texau.com/api/v1/email_verification_inquiry/450f4ca3-0c48-47be-bb52-4ba2546742b8" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY"
{
  "id": "450f4ca3-0c48-47be-bb52-4ba2546742b8",
  "state": "DONE",
  "data": [
    {
      "refId": "ref-001",
      "state": "DONE",
      "input": {
        "email": "[email protected]"
      },
      "output": [
        {
          "address": "[email protected]",
          "status": "VALID",
          "subStatus": "SMTP",
          "free": false,
          "found": true
        }
      ]
    },
    {
      "refId": "ref-002",
      "state": "DONE",
      "input": {
        "email": "[email protected]"
      },
      "output": [
        {
          "address": "[email protected]",
          "status": "INVALID",
          "subStatus": "MAILBOX_NOT_FOUND",
          "free": false,
          "found": false
        }
      ]
    }
  ]
}
GET
/email_verification_inquiry/{id}
GET
API Key (header: x-api-key)
x-api-keystring
Required

Your TexAu API key. Contact TexAu to obtain one.

Your TexAu API key. Contact TexAu to obtain one.
path
idstring
Required

The job ID returned from the Email Verification endpoint

Request Preview
Response

Response will appear here after sending the request

Authentication

header
x-api-keystring
Required

API Key for authentication. Your TexAu API key. Contact TexAu to obtain one.

Path Parameters

idstring
Required

The job ID returned from the Email Verification endpoint

Responses

idstring
statestring
Allowed values:DONEPROCESSINGFAILED
dataarray