Skip to content

Amazon Email Checker API: Real-time Email Verification

Check whether an email is registered on Amazon, with instant real-time response.

Code example:

curl -X POST 'https://api.ekycpro.ai/v1/check' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"service_type": "amazon_email", "identifier": "user@example.com"}'

Success response:

{
"success": true,
"data": {
"id": "chk_a1b2c3d4e5f6",
"identifier": "user@example.com",
"registered": true,
"billed": true
}
}

HTTP Request

POST https://api.ekycpro.ai/v1/check

Request Headers

HeaderDescription
X-API-KeyYour API key (required)
Content-Typeapplication/json

Request Body

FieldTypeRequiredDescription
service_typestringYesamazon_email
identifierstringYesEmail address

Response Fields

FieldTypeDescription
successboolWhether the request succeeded
data.identifierstringThe checked identifier
data.registeredboolWhether account is registered
data.idstringUnique check request ID
data.billedboolWhether this request was billed

Status Codes

StatusDescription
200Check completed
400Bad request
401Unauthorized
500Server error