Discover/Emailnator API
live

Emailnator APIemailnator.com

Generate disposable Gmail and custom-domain email addresses and read incoming messages via the Emailnator API. Supports dot-trick, plus-addressing, and more.

Endpoint health
verified 3h ago
generate_email
get_message
get_messages
3/3 passing latest checkself-healing
Endpoints
3
Updated
17d ago

What is the Emailnator API?

The Emailnator API exposes 3 endpoints for creating temporary email addresses and reading their inboxes without a permanent account. The generate_email endpoint produces addresses across four generation strategies — dotGmail, plusGmail, googleMail, and a custom femailtor.com domain — while get_messages and get_message let you list and read incoming mail by message ID.

Try it
Comma-separated list of email generation types. Accepted values: dotGmail, plusGmail, googleMail, domain
api.parse.bot/scraper/17c1b5ae-23d5-41ca-94da-5245ffef3f58/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/17c1b5ae-23d5-41ca-94da-5245ffef3f58/generate_email?email_types=dotGmail' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace emailnator-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.emailnator_api import Emailnator, EmailType

client = Emailnator()

# Generate a temporary email using Gmail dot trick
email = client.emails.generate(email_types=EmailType.DOT_GMAIL)
print(email.address, email.email_types_used)

# Check the inbox for messages
for message in email.messages.list():
    print(message.id, message.from_, message.subject, message.time)
    # Get full message content
    content = message.get_content(email=email.address)
    print(content.message_id, content.content_html)
All endpoints · 3 totalmissing one? ·

Generate a new temporary/disposable email address. Supports different email types: dotGmail (Gmail dot trick), plusGmail (Gmail plus addressing), googleMail (@googlemail.com), and domain (custom @femailtor.com domain). Returns a single randomly generated address using one of the requested types.

Input
ParamTypeDescription
email_typesstringComma-separated list of email generation types. Accepted values: dotGmail, plusGmail, googleMail, domain
Response
{
  "type": "object",
  "fields": {
    "email": "string - the generated email address",
    "email_types_used": "array of strings - the email types used for generation"
  },
  "sample": {
    "data": {
      "email": "[email protected]",
      "email_types_used": [
        "dotGmail"
      ]
    },
    "status": "success"
  }
}

About the Emailnator API

Generating Temporary Email Addresses

The generate_email endpoint accepts an optional email_types parameter as a comma-separated string of one or more strategies: dotGmail (Gmail dot-trick variations), plusGmail (Gmail plus-addressing), googleMail (@googlemail.com alias), or domain (@femailtor.com). The response returns the generated email address as a string and an email_types_used array confirming which strategies were applied. If email_types is omitted, the API selects a default strategy.

Reading the Inbox

Once you have an address, pass it to get_messages to retrieve the inbox list for that address. The response includes the email string, a total integer count of messages, and a messages array. Each item in that array carries a messageID, from, subject, and time field — enough to identify a specific message without fetching its full body. Advertising and promotional placeholder messages are filtered out automatically before the response is returned.

Fetching Full Message Content

To retrieve the body of a specific email, call get_message with both the email and message_id (taken from the messageID field in get_messages). The response includes a content_html field containing the raw HTML body when the message is HTML-formatted, or a content object when the message is JSON-formatted. Both the email and message_id are echoed back in the response for reference.

Coverage Notes

All generated addresses are ephemeral — there is no persistent account. Inboxes are only accessible while the generated address remains valid. The API does not expose controls for setting inbox expiry, deleting messages, or sending outbound email.

Reliability & maintenanceVerified

The Emailnator API is a managed, monitored endpoint for emailnator.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when emailnator.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official emailnator.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Automate account sign-up flows in CI pipelines using freshly generated dotGmail addresses from generate_email
  • Poll get_messages to detect when a verification email arrives, then parse the subject or body from get_message
  • Use plusGmail addresses to test how a service handles plus-addressed emails during QA
  • Generate @googlemail.com aliases to verify inbox delivery for region-specific email configurations
  • Extract OTP codes or confirmation links from content_html returned by get_message in end-to-end test suites
  • Spin up isolated inboxes per test case using the domain type to avoid cross-test message contamination
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Emailnator have an official developer API?+
Emailnator does not publish a documented public developer API. The service is primarily a web-based tool accessible at emailnator.com.
What does `get_messages` return, and how are messages filtered?+
get_messages returns a messages array where each object contains a messageID, from, subject, and time. It does not return full email bodies — those require a separate get_message call using the messageID. Advertising and promotional placeholder entries are filtered out before the response is delivered, so only real incoming messages appear.
Can I retrieve attachments or raw MIME content from emails?+
Not currently. get_message returns either a content_html string (HTML body) or a content object (JSON-formatted responses). Attachment data and raw MIME parts are not exposed. You can fork this API on Parse and revise it to add an endpoint that surfaces attachment metadata or raw message content.
Is there a way to list or reuse previously generated email addresses?+
Not currently. The API generates a new address per generate_email call and does not maintain a session or history of previously created addresses. You can fork this API on Parse and revise it to add persistence logic or a listing endpoint backed by your own storage layer.
What happens if I call `get_messages` before any mail has arrived?+
The response will return a messages array that is empty and a total of 0. The email field will still reflect the address you passed in, so you can poll the endpoint and compare total to detect when new mail arrives.
Page content last updated . Spec covers 3 endpoints from emailnator.com.
Related APIs in Developer ToolsSee all →
smstome.com API
Browse temporary phone numbers from countries around the world and read incoming SMS messages in real time. List available numbers by country, retrieve messages sorted newest to oldest, and search message history by sender or content.
thecompaniesapi.com API
Enrich your company database with 80+ data points per company, search by industry or company details, and discover email patterns to drive your business intelligence. Find verified company information, get pricing data, and ask contextual questions about any organization to fuel your sales, marketing, or research efforts.
dotdb.com API
Search domains and uncover keyword insights to research competitor strategies and domain market intelligence. Get detailed domain metadata, keyword reports, and pricing information to inform your SEO and business decisions.
hypeauditor.com API
Find and analyze influencer profiles across Instagram and other platforms with detailed engagement metrics, contact information, and linked social accounts. Search by keyword or location, retrieve profile analytics, and identify top-performing creators to inform influencer marketing decisions.
craiyon.com API
Generate custom AI images from text descriptions and search through a library of previously created AI-generated images. Get your results instantly as ready-to-use image files.
domains-monitor.com API
Search and monitor domain information across multiple zones, access free domain lists, and retrieve detailed zone metadata and account information. Aggregate domain data and track availability across supported TLDs.
gamma.app API
Create AI-powered presentations, documents, and webpages from scratch or templates, check generation progress, download completed exports, and manage workspace settings like themes and folders. Access everything through Gamma.app's platform with a valid API key.
explodingtopics.com API
Discover rapidly growing trends, emerging startups, and top-performing websites by filtering through trending topics by category and volatility. Programmatically access detailed trend analysis, related topics, blog coverage, and curated highlights to stay ahead of market movements.