---
title: Advanced Email Verification API
slug: email-verification
url: https://apyhub.com/quadlem/service/email-verification
provider: "Quadlem, LLC"
categories: [Communications, Data Validation]
tags: [email-validation, email-verification, data-validation, contact-cleanup]
auth: api_key
version: 2.1.0
service_type: sync
endpoints: 1
atoms: 40
mcp: true
---

# Advanced Email Verification API

Verify an email address from a single query parameter and get a response with a code and success flag. Built for signup checks and list cleanup.

## Endpoints

| Method | URL | Description | Atoms |
| --- | --- | --- | --- |
| GET | `https://api.eu.apyhub.com/quadlem/email-verification` | What it does Verifies an email address's syntax and deliverability, and flags disposable, role-base… | 40 |

## Endpoint reference

### Email Verification

`GET https://api.eu.apyhub.com/quadlem/email-verification` · 40 atoms · accepts `application/json` · returns `application/json`

| Parameter | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `email` | query | string (email) | yes |  |

#### Quickstart

Use the following request to validate an email address and retrieve deliverability, domain, and fraud risk information.

```bash
curl -X GET "https://api.eu.apyhub.com/quadlem/email-verification?email=dev@example.com" \
  -H "apy-token: $APY_TOKEN"
```

#### What you'll get back

A successful request returns details about the email address, including its validity, deliverability, domain information, mail server status, and an overall risk assessment.

```json
{
  "success": true,
  "code": 200,
  "EMAIL": {
    "email": "dev@example.com",
    "domain": "example.com",
    "valid": true,
    "is_deliverable": true,
    "is_disposable": false,
    "is_role": false,
    "mx": {
      "found": true,
      "provider": "Google",
      "reputable": true
    },
    "risk_score": 0,
    "risk_level": "low",
    "recommendation": "accept",
    "summary": "This looks like a valid, deliverable email address with no risk indicators (0/100 — low risk). Recommended action: accept."
  }
}
```

> **Note:** Depending on the email address and service configuration, the response may include additional validation and reputation signals to help assess email quality and fraud risk.

## About

## What it does

Email Verification checks whether an email address is valid and returns a simple result envelope with a numeric `code` and a `success` flag. Send an `email` in the query string and use the response to gate signups, clean contact lists, or reduce bad addresses before you send mail.

Use Email Verification when you need a lightweight validation step in a registration flow, lead form, CRM import, or bulk list cleanup job. It fits into systems that want a fast pass/fail check without pulling in a larger identity or enrichment workflow.

The request schema is minimal: one `email` field. The response schema guarantees a standard wrapper, and the service may include additional module blocks alongside `code` and `success`. That makes it easy to check the outcome while still leaving room for extra response details when they are available.

If you already validate email format at the edge, Email Verification gives you a second check before you store, message, or synchronise the address downstream.

## Usage

Base URL: `https://api.eu.apyhub.com` (default region — see
`GET https://apyhub.com/api/public/regions` for the rest).

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/quadlem/service/email-verification
