Disify API

⭐ Beginner's Pick Email / No Auth Required Beginner HTTPS CORS
Free to Use Varies (check documentation)

Overview

Disify is a free, no-auth API that checks whether an email address or domain belongs to a known disposable or temporary email service. It helps protect sign-up forms and contact forms from throwaway addresses with a simple GET request. No API key is required, making it the fastest way to add disposable email detection to your app.

💡

Beginner Tip

You can check an email in one GET request with no setup at all — just replace the email in the URL path and you get a JSON response instantly. Cache results for the same domain to avoid redundant requests, since disposable domain status rarely changes.

Available Data

email delivery status
message ID
bounce/complaint data
open/click tracking

Example Response

JSON Response
{
  "message_id": "msg_abc123def456",
  "status": "delivered",
  "to": "[email protected]",
  "subject": "Welcome!",
  "timestamp": "2025-01-15T10:30:00Z"
}

Field Reference

format Whether the email address has a valid format
dns Whether the email domain has a valid DNS record
disposable Whether the email domain is a known disposable or temporary email provider
alias Whether the address appears to be an alias or forwarding address
domain The domain portion extracted from the email address

Implementation Example

const url = "https://www.disify.com/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

Empty or null response Malformed email address passed in the URL path
Ensure the email is URL-encoded and properly formatted before passing it in the request path
format: false The email string does not match valid email format
Validate email format client-side before calling the API to avoid unnecessary requests
Unexpected 404 Incorrect API endpoint path used
Use /api/email/{email} for single email checks or /api/domain/{domain} for domain-only checks

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 10/20
🔒 Security 15/15
🛠 Developer XP 20/20
✓ Reliability 7/15
Response Time 781ms

Fully tested on Apr 5, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS YES
Category Email
Difficulty Beginner
Verified: 2026-04-07

Alternatives to Disify

Technical alternatives for different use cases.

Specialized in detecting disposable email addresses

Better For

Full email deliverability checking

Trade-off

Blocking temporary/disposable email signups

Detects disposable/temporary email addresses

Better For

Full email deliverability verification

Trade-off

Blocking signups from disposable email services

Similar APIs

View All →