Reckon
Docs HomeReckon Site
Docs HomeReckon Site
  1. Email Verification
  • Start Here
  • Reckon Public APIs
    • Email Verification
      • Verify Email Address
        POST
    • Credits
      • Get Credit Balance
  1. Email Verification

Verify Email Address

POST
https://api.reckonapp.io/api/v1/verify/single

Request

Authorization
Add parameter in header
X-API-KEY
Example:
X-API-KEY: ********************
Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Verification completed successfully
Body

🟠400Bad Request
🟠401Unauthorized
🟠402402
🟠405405
🟠408408
🟠415415
🟠422Parameter Error
🟠429429
🔴500Server Error
🔴503Service Unavailable
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://api.reckonapp.io/api/v1/verify/single' \
--header 'X-API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "user@example.com"
}'
Response Response Example
200 - Example 1
{
    "email_address": "user@example.com",
    "status": "valid",
    "status_meta": {
        "valid_format": true,
        "domain_exists": true,
        "accept_all": true,
        "disposable": true,
        "role_based": true,
        "mailbox_full": true,
        "plus_address": true
    },
    "domain_meta": {
        "domain": "string",
        "mailbox_provider": "string"
    },
    "config": {
        "validation_perform": true,
        "verification_perform": true
    },
    "errors": {
        "service": "string",
        "compliance": "string"
    },
    "performed_at": "2019-08-24T14:15:22Z",
    "performed_in_ms": 0
}
Modified at 2025-08-13 13:11:56
Previous
Start Here
Next
Get Credit Balance
Built with