AcyChecker
  • AcyChecker documentation
  • WordPress & Joomla Plugin
    • AcyChecker Plugin WordPress & Joomla
    • Dashboard
    • Clean my database
    • Block on registration
    • Tests
    • Configuration
  • API Documentation
    • Get remaining credits
    • Check a single email address
    • Check a batch of email addresses
Powered by GitBook
On this page
  1. API Documentation

Check a single email address

Single email check

GET https://api.acychecker.com/api/v1/email_verify/{email}

This endpoint allows you to test an email address and get the results.

Path Parameters

Name
Type
Description

email*

string

The email address you want to check

Headers

Name
Type
Description

API-KEY*

string

Your API key

Content-Type*

string

Must be "application/json"

{
    "message": "",
    "data": {
        "email": "email@example.com",
        "valid": true,
        "disposable": false,
        "free": true,
        "role": false,
        "d_exists": true,
        "exists": "valid",
        "accept_all": false
    }
}
{
    "message": "Invalid API-KEY"
}

OR

{
    "message": "License expired"
}
{
    "message": "No credits left",
    "data": []
}
{
    "message": "Too many requests"
}

PreviousGet remaining creditsNextCheck a batch of email addresses

Last updated 1 year ago