ASOasis Tech Launches Email Verification Pro API—Multi-Layer Checks with Deliverability Scoring

ASOasis Tech releases an email verification API that combines syntax validation, disposable domain detection, MX/DNS checks, SPF/DMARC/DKIM verification, and a 0-100 deliverability score in a single call.

ASOasis
2 min read
ASOasis Tech Launches Email Verification Pro API—Multi-Layer Checks with Deliverability Scoring

ASOasis Tech ships an email verification API that goes beyond syntax checks

ASOasis Tech has released the Email Verification Pro API, a managed API that validates email addresses through seven distinct checks and returns a 0–100 deliverability score. The API is now live on RapidAPI and on the ASOasis product page.

What it does

The API exposes three endpoints:

  • POST /v1/verify — Verify a single email address
  • POST /v1/verify/batch — Verify up to 10 email addresses in one request
  • GET /v1/health — Service health check

Each verification runs seven checks and returns:

  • Syntax validation (RFC 5322 compliant)
  • Disposable domain detection across 1,000+ known providers
  • Role account detection (admin@, info@, support@, etc.)
  • MX record verification with exchange server details and priorities
  • SPF, DMARC, and DKIM authentication record checks
  • Deliverability score from 0 to 100
  • Verdict: deliverable, risky, unknown, undeliverable, or disposable

Why it matters

Invalid and disposable email addresses cost businesses money through wasted sends, damaged sender reputation, and inflated contact databases. Traditional approaches—regex-only validation or invasive SMTP probing—are either too shallow or too aggressive. The Email Verification Pro API provides a balanced, non-invasive alternative that checks multiple layers without touching the recipient’s mailbox.

Quick start

curl --request POST \
  --url "https://email-verification-pro1.p.rapidapi.com/v1/verify" \
  --header "Content-Type: application/json" \
  --header "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  --header "X-RapidAPI-Host: email-verification-pro1.p.rapidapi.com" \
  --data '{"email":"user@example.com"}'

Target audience

  • Marketing teams cleaning email lists before campaigns
  • Product teams validating emails at user sign-up
  • Sales teams scoring lead quality in pipelines
  • Compliance teams enforcing data quality requirements
  • Developers building email-aware applications

Availability and pricing

The API is available now on RapidAPI with four pricing tiers:

Plan Price Requests/Month Rate Limit
Basic Free 100 5 req/min
Pro $14.99/mo 5,000 30 req/min
Ultra $49.99/mo 25,000 100 req/min
Mega $149.99/mo 100,000 300 req/min

Enterprise custom deals are available upon request. For details, visit:

Related Posts