Disify API
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
Example 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
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Alternatives to Disify
Technical alternatives for different use cases.
Specialized in detecting disposable email addresses
Full email deliverability checking
Blocking temporary/disposable email signups
Detects disposable/temporary email addresses
Full email deliverability verification
Blocking signups from disposable email services
Similar APIs
View All →DropMail
⭐ Beginner's PickDropMail provides a GraphQL API for creating and managing temporary email inboxes, letting you generate disposable addresses and receive real emails without registration.
EVA
EVA provides programmatic access to validate email addresses via REST API.
Guerrilla Mail
⭐ Beginner's PickGuerrilla Mail provides a REST API for creating and reading disposable temporary email addresses, useful for testing email flows without exposing real inboxes.
Kickbox
⭐ Beginner's PickKickbox provides a free, no-auth email verification endpoint that checks whether an email address is deliverable by performing syntax validation, domain MX lookup, and disposable address detection.
mail.gw
mail.gw is a REST API for creating and managing temporary 10-minute email addresses with full inbox access, all without authentication for basic use.