Discover/anonymousemail API
live

anonymousemail APIanonymousemail.me

Send anonymous emails via anonymousemail.me with one API endpoint. Set recipient, subject, body, and sender display name without registration.

This API takes change requests — .
Endpoints
1
Updated
3h ago

What is the anonymousemail API?

The anonymousemail.me API exposes 1 endpoint — send_email — that lets you dispatch anonymous emails without creating an account on the service. A single POST call accepts up to 5 parameters including to, subject, text, from, and fromname, then returns a status field indicating whether the email was sent, encountered an error, or has an ambiguous outcome, plus a human-readable message from the site.

This call costs2 credits / call— charged only on success
Try it
Recipient email address.
Sender email address. Free tier is locked to [email protected]; premium allows custom addresses.
Email message body. Supports HTML content. Max 10000 characters.
Email subject line, max 60 characters.
Sender display name shown in the email.
api.parse.bot/scraper/c17b1c2a-4bde-43f6-a286-63371a02eb21/<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 POST 'https://api.parse.bot/scraper/c17b1c2a-4bde-43f6-a286-63371a02eb21/send_email' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "to": "[email protected]",
  "text": "Testing with custom sender name",
  "subject": "Custom Name Test",
  "fromname": "CustomSender"
}'
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 anonymousemail-me-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.

"""Walkthrough: send an anonymous email and inspect the result."""
from parse_apis.anonymousemail_me_api import AnonymousEmail, InvalidEmailFormat

client = AnonymousEmail()

# Send an anonymous email with subject and body
try:
    result = client.emails.send(
        to="[email protected]",
        subject="Hello from the SDK",
        text="This is a test message sent anonymously.",
        sender_name="Secret Admirer",
    )
    print(result.status, "-", result.message)
except InvalidEmailFormat as e:
    # Raised when the recipient address is malformed
    print("Invalid email:", e.message)

print("exercised: emails.send")
All endpoints · 1 totalmissing one? ·

Sends an anonymous email. Fetches a fresh CSRF token and solves the Cloudflare Turnstile captcha before submitting the form to send.php. The site may rate-limit rapid submissions from the same IP. Returns the submission status and any message from the site.

Input
ParamTypeDescription
torequiredstringRecipient email address.
fromstringSender email address. Free tier is locked to [email protected]; premium allows custom addresses.
textstringEmail message body. Supports HTML content. Max 10000 characters.
subjectstringEmail subject line, max 60 characters.
fromnamestringSender display name shown in the email.
Response
{
  "type": "object",
  "fields": {
    "status": "Submission result: 'sent' on success, 'error' if the site returned an error, 'submitted' if outcome is ambiguous",
    "message": "Human-readable message from the site describing the result"
  },
  "sample": {
    "data": {
      "status": "sent",
      "message": "Your email was sent successfully"
    },
    "status": "success"
  }
}

About the anonymousemail API

What the API covers

The send_email endpoint covers the full anonymous email submission flow on anonymousemail.me. You supply a recipient address in to (required), an optional subject (up to 60 characters), and an optional text body that accepts HTML content up to 10,000 characters. The fromname parameter controls the display name shown to the recipient in their email client.

Sender address behavior

The from field works differently depending on your plan tier. On the free tier, the sender address is locked to [email protected] regardless of what value you supply. Premium access allows a custom sender address. If you need a specific reply-to identity, plan for this limitation before building workflows that depend on recipient replies.

Response shape

The endpoint returns two fields: status and message. The status value is one of three strings — 'sent' (delivery confirmed by the site), 'error' (the site returned an explicit failure), or 'submitted' (outcome could not be determined, e.g. the site returned an ambiguous response). The message field carries whatever human-readable text the site provides, useful for surfacing failure reasons to end users or logs.

Known limitations

The site may rate-limit rapid successive submissions from the same IP address, so high-frequency bulk sending is not reliable. There is no endpoint for checking delivery status, reading inbox responses, or managing sent history — the API is strictly fire-and-forget.

Reliability & maintenance

The anonymousemail API is a managed, monitored endpoint for anonymousemail.me — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when anonymousemail.me 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 anonymousemail.me 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.

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
  • Sending automated notification emails without exposing a real sender identity
  • Testing email rendering with HTML content bodies up to 10,000 characters
  • Alerting a recipient via to with a custom fromname for context without registration
  • Prototyping anonymous feedback or tip submission forms that email results to a moderator
  • Sending one-off transactional messages where a persistent email account is not needed
  • Routing form submissions to a designated to address with a descriptive subject line
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does anonymousemail.me have an official developer API?+
No. anonymousemail.me does not publish an official developer API or public documentation for programmatic access. This Parse API provides structured access to the service's email sending functionality.
What does the `status` field actually distinguish?+
It returns one of three values: 'sent' when the site confirms the email was dispatched, 'error' when the site returns an explicit failure (the message field will contain details), and 'submitted' when the submission completed but the site's response did not clearly indicate success or failure. Always check message alongside status when handling the 'error' or 'submitted' cases.
Can I use a custom sender address on the free tier?+
No. On the free tier, the from address is fixed to [email protected]. Custom sender addresses via the from parameter are only available on premium. The fromname display name field is available on all tiers.
Does the API support reading sent email history or delivery receipts?+
Not currently. The API covers only outbound email submission via send_email. There is no endpoint for querying sent history, confirming delivery, or receiving bounce notifications. You can fork this API on Parse and revise it to add such an endpoint if the site exposes that data.
Are there known submission volume limits?+
The site may throttle rapid submissions originating from the same IP address. This is a source-side constraint and is not configurable through the API. For use cases requiring high-frequency sending, that throttling behavior should be factored into your design. You can fork this API on Parse and revise it to add retry or backoff logic around the send_email endpoint.
Page content last updated . Spec covers 1 endpoint from anonymousemail.me.
Related APIs in Developer ToolsSee all →
peet.ws API
Solve Cloudflare Turnstile verification challenges on the peet.ws demo site and retrieve the token needed to complete the challenge. Use the returned verification token to proceed past security checkpoints and access protected content.
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.
crash.pmmp.io API
Search and browse crash reports for PocketMine-MP, view detailed information about specific crashes, and submit new crash reports to the archive. Keep your server stable by accessing a centralized database of known issues and their solutions.
shouldianswer.com API
Search phone numbers to get ratings, reviews, and community comments to identify spam calls and unwanted contacts. Access curated blog posts with tips and insights about phone number safety and caller identification.
intelbase.is API
Search any email address to uncover associated data breaches, account registrations, infostealer logs, and service registration status all in one place. Get comprehensive intelligence on email exposure and digital footprint without leaving a single platform.
etherscan.io API
Access data from etherscan.io.
sciencedirect.com API
Access peer-reviewed scientific articles with complete metadata including titles, author information, abstracts, and direct PDF links from ScienceDirect's research database. Quickly retrieve bibliographic details and full-text documents to streamline your academic research and literature review process.
sneakers.com API
Search and browse sneaker products across categories and brands, view detailed product information, and discover current flash sales and trending searches from sneakers.com. Get instant access to sneaker listings, pricing, and real-time sale events to find exactly what you're looking for.