Skip to content
@Addrlyq

Addrly

One API call to detect disposable emails, verify domains, and protect your sign-up flow. Fast, accurate, and privacy-first.

Addrly

Addrly

Email validation API — detect disposable emails, verify domains, and protect your sign-up forms.

DocumentationGet API KeyStatus


Official SDKs

Language Package Install Docs
Python PyPI pip install addrly View →
JavaScript npm npm install addrly View →
PHP Packagist composer require addrly/addrly-php View →

Quick Start

Python

from addrly import Addrly

client = Addrly("your_api_key")
result = client.validate("user@tempmail.com")

if result.disposable:
    print("Blocked: disposable email detected")

JavaScript

import { Addrly } from 'addrly';

const client = new Addrly('your_api_key');
const result = await client.validate('user@tempmail.com');

if (result.disposable) {
  console.log('Blocked: disposable email detected');
}

cURL

curl -H "X-API-Key: your_api_key" \
  https://api.addrly.app/email/user@tempmail.com

PHP

use Addrly\Addrly;

$client = new Addrly('your_api_key');
$result = $client->validate('user@tempmail.com');

if ($result->disposable) {
    echo 'Blocked: disposable email detected';
}

Features

Feature Description
Disposable Detection Block 800+ temporary email providers
MX Verification Confirm domain can receive emails
Domain Age Flag newly registered domains
Role Detection Identify generic addresses (info@, support@)
Public Domain Detect Gmail, Yahoo, Outlook, etc.
Normalization Standardize emails, remove aliases
Typo Suggestions "Did you mean gmail.com?"
Relay Detection Catch forwarding services

API Response

{
  "email": "user@tempmail.com",
  "disposable": true,
  "mx": true,
  "domain": "tempmail.com",
  "domain_age_days": 2156,
  "public_domain": false,
  "relay_domain": false,
  "role_account": false,
  "normalized_email": "user@tempmail.com",
  "did_you_mean": null
}

Links


License

MIT © Addrly

Popular repositories Loading

  1. addrly-php addrly-php Public

    Official PHP SDK for Addrly — email validation API with disposable detection, MX checks, and domain verification.

    PHP 1

  2. addrly-wordpress addrly-wordpress Public

    WordPress plugin for Addrly email validation — block disposable and spam emails on registration, checkout, and forms. No API key required.

    PHP 1

  3. addrly-node addrly-node Public

    Official Node.js/JavaScript SDK for Addrly — validate emails, detect disposables, and verify domains in seconds.

    TypeScript

  4. addrly-python addrly-python Public

    Official Python SDK for Addrly — email validation API with disposable detection, MX verification, and more.

    Python

  5. .github .github Public

Repositories

Showing 5 of 5 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…