DropMail API
Overview
DropMail provides a GraphQL API for creating and managing temporary email inboxes, letting you generate disposable addresses and receive real emails without registration. It is useful for automated testing flows that require email verification steps. No API key is needed, and inboxes are automatically deleted after they expire.
Beginner Tip
Use GraphQL mutations to create a session first, then poll the inbox using the session ID to check for incoming messages. Store the session token after creation — there is no way to recover a lost session since the service is completely anonymous.
Available Data
Example Response
{
"message_id": "msg_abc123def456",
"status": "delivered",
"to": "[email protected]",
"subject": "Welcome!",
"timestamp": "2025-01-15T10:30:00Z"
} Field Reference
id Unique session identifier used to access this temporary inbox addresses List of email address objects assigned to this session addresses[].address The full temporary email address (e.g. [email protected]) mails List of received email messages in this inbox mails[].subject Subject line of the received email mails[].text Plain text body content of the received email Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://dropmail.me/api/";
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 DropMail
Technical alternatives for different use cases.
Temporary email with GraphQL API
Long-lived temporary addresses
Modern GraphQL-based temporary email integration
Similar APIs
View All →Disify
⭐ Beginner's PickDisify is a free, no-auth API that checks whether an email address or domain belongs to a known disposable or temporary email service.
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.