At a glance
Fourteen rows. Every EmailOnDeck cell is what its FAQ, generator page, Pro page, API documentation and terms said on 2 September 2026; every GrabMail cell is read from the constants the service enforces. “Partly” means a paid tier or a caveat the row cannot hold — the sections below say which.
| Feature | GrabMail | EmailOnDeck |
|---|---|---|
| Free tier | Yes: Everything: public domains, your own domain, the API and the MCP server. No account, no card. | Yes: One random address at a time, private, for about a day, after a CAPTCHA; with ads. |
| No account, no API key | Yes: Nothing to create. A GET with the address in the query string reads the mailbox. | Partly: The free inbox needs a CAPTCHA and your browser session. Pro needs a login; the API needs a 40-character key on every call. |
| REST API | Yes: Three endpoints over HTTPS, OpenAPI 3.1, one read per second per address. | Partly: Pro only: create, list, count and read raw messages through api.emailondeck.com, 25,000 calls a day. |
| Choose your own address | Yes: Any name on 8 public domains, grabmail.io and mixozia.com among them, free. | Partly: Pro only: “Custom Email Address”, with a handle and a domain in the API. Free addresses are generated. |
| Your own domain | Yes: Free and unlimited: one MX record at smtp.grabmail.io, no registration step. | No: Not published; Pro offers “exclusive domains” of its own. |
| Message retention | 5 days, fixed. Not a tier, not a setting. | Free: “usually it lasts most of the day”, wiped a couple of days later. Pro: the address stays active for over a year; mail logs are still wiped every few days. |
| Attachments | Yes: Up to 5 MB per message, downloadable from the inbox and the API. | Yes: Yes, shown under the message with a download icon; size limit not published. |
| No ads, no tracking | Yes: No ads, no analytics, no third-party script. | Partly: Ad-supported on Free, including direct placements sold in the inbox; “NO ADS” on Pro. |
| Private inbox | No: Public: anyone who knows the address can read it. Each mailbox has an alias to hand out instead. | Yes: Private: “Your emails are only viewable by you”, bound to your session and an email token. |
| MCP server for AI agents | Yes: Free MCP server at https://grabmail.io/mcp: create an inbox, wait up to 25 seconds for a message, read it. | No: None: no MCP server, no llms.txt. |
| Sending mail | No: None, by design. Receive only. | Partly: Free: only to other EmailOnDeck addresses. Pro: to anyone, with your IP in the headers and a proof-of-work first. Not through the API. |
| Webhooks or push | No: None. Poll once a second, or let the MCP wait hold the call open. | No: None published; the API is polled. |
| Official SDKs | No: None. An OpenAPI document and three endpoints instead. | No: None; cURL examples. |
| Apps and extensions | Partly: A Chrome extension, loaded by hand; not on the store yet. | Yes: An iPhone app, a Chrome extension and a Firefox add-on; extension addresses differ from the website’s. |
Checked 2 September 2026. EmailOnDeck publishes its Pro price in Bitcoin only (0.000864 BTC per 30 days, also payable in ETH or USDT) and says the cost in other currencies varies with Bitcoin; no dollar price appears on its pages. Its domain count and attachment size are not published, and the cells say so.
What EmailOnDeck does well
EmailOnDeck has processed, by its own counter, over two hundred million temporary emails since 2015. Four things it does that GrabMail does not:
- The inbox is yours alone. Access is tied to your browser session and an email token, not to a guessable address. Its FAQ says it plainly: other services “allow anyone who knows your email address to view all your emails” — which is exactly what GrabMail does.
- Pro sends, and keeps the address. A Pro address can reply to anyone (with your IP in the headers and a proof-of-work before each send) and stays active for over a year. GrabMail cannot send and deletes after 5 days.
- Real apps. An iPhone app, a Chrome extension and a Firefox add-on, with a least-privilege permission the FAQ spells out. GrabMail has a Chrome extension you load by hand.
- Wiping as a policy. Servers and logs wiped continuously, no backups, disks zeroed before reuse. GrabMail deletes on a schedule and says what it keeps; EmailOnDeck says it keeps nothing.
Where GrabMail is different
GrabMail is built for the things EmailOnDeck reserves for Pro or does not do: choosing a name, calling an API without a key, pointing your own domain, and driving it from an agent.
- Any address, free, right now. Type
trial@grabmail.ioand it exists; no CAPTCHA, no generator, no Pro. EmailOnDeck assigns the free address and sells choosing one. - A keyless API with no daily cap. EmailOnDeck’s API is a Pro feature with a 40-character key and 25,000 calls a day. GrabMail’s is a GET with the address in it, no key, and one read a second per address as the only limit. The reference is three endpoints.
- Your own domain, free. EmailOnDeck publishes no way to bring a domain. Here one MX record at smtp.grabmail.io turns any domain into a catch-all inbox, unlimited — the durable fix for forms that refuse disposable domains.
- An MCP server, and 5 days. An agent opens an inbox at https://grabmail.io/mcp and blocks on
wait_for_messagefor up to 25 seconds, with nothing to sign up for. And the mail is there tomorrow, not gone “a couple days” later.
Price, side by side
EmailOnDeck prices Pro in Bitcoin, payable in BTC, ETH or USDT, for 30 days per payment, with no refunds under any circumstances and a 15% discount for six months by written approval. GrabMail’s only paid plan buys access to a pool of domains kept off the disposable-mail blocklists; everything in the table above stays free.
| Tier | GrabMail | EmailOnDeck |
|---|---|---|
| Free | Public domains, your own domain, API, MCP. No account, no cap. | One private random address at a time, about a day, sending to other EmailOnDeck addresses only, ads. |
| Cheapest paid | Premium, $24 a month: API access to the off-blocklist domain pool, paid in crypto. | Pro, 0.000864 BTC per 30 days: no ads, 100+ addresses at a time, custom addresses, sending, exclusive domains, saved addresses, API, addresses active over a year. |
| Above that | Pro $78 and Scale $148 a month: more messages and keys on the same pool. | Nothing; 15% off for 180 days paid at once, on request. A paid recovery of a lost address, price “varies”. |
| Refunds | Prepaid crypto balance; no SLA. | “All purchases are final. Refunds are not provided.” |
Prices as published on 2 September 2026; the Bitcoin figure converts to a different amount in any other currency on any other day. GrabMail’s pricing page has the full grid.
For developers: reading a mailbox
The whole difference in one command. This reads a GrabMail mailbox with no header, no key and no account:
$ curl -sG https://grabmail.io/api/v1/mailbox --data-urlencode "address=anything@grabmail.io" | jq '{count, alias}'EmailOnDeck’s API is a Pro feature: api.emailondeck.com/api.php?act=message_count_email&token=… and friends, a 40-character key on every call, 25,000 calls a day, and no sending through it even though Pro can send from the page. GrabMail’s reference is three endpoints with no key; the Python and Node.js guides show the wait loop with a deadline.
One thing EmailOnDeck’s API does that GrabMail’s does not: create an address with a handle you choose on a domain you choose. Here that is not an API call because it is not needed — the address exists the moment mail arrives at it.
For AI agents
EmailOnDeck publishes no MCP server and no llms.txt; an agent would need a Pro key. GrabMail’s server at https://grabmail.io/mcp gives an agent an inbox with no key: create_inbox, a blocking wait_for_message of up to 25 seconds, read_message.
Email for AI agents covers the four-call loop and the guard rails; the client guide has the configuration for Claude, Cursor and five others.
Switching from EmailOnDeck
For a person, the switch is a habit; for a Pro subscriber, a short list:
- Type a name instead of pressing Get Email. On the front page, any local part on grabmail.io, mixozia.com or another of the 8 public domains is an inbox. No CAPTCHA, no token to keep.
- Hand out the alias. A GrabMail mailbox is public, where your EmailOnDeck inbox was private. Give forms the alias, which delivers to the mailbox and cannot open it; keep the address to yourself.
- Replace the API calls.
act=create_emaildisappears;act=message_count_emailandact=view_raw_emailbecome a GET on/api/v1/mailboxand/api/v1/message/{id}, with notoken. - Keep Pro if you send. GrabMail has no sending path and will not add one. If replying from the address is why you pay, the switch is not for you.
Which one, for what
The honest split is between privacy and openness:
Pick GrabMail when
- you want to choose the address, and keep its mail for 5 days;
- a script or an agent reads the mail, with no key and no daily cap;
- you want your own domain as a catch-all inbox for free.
Pick EmailOnDeck when
- the inbox must be readable by you alone;
- you want an iPhone app and a signed browser extension;
- you will pay for an address that sends and lasts a year.
When to stay with EmailOnDeck
Three situations where switching would cost you something real:
- Privacy is why you chose it. A session-bound inbox nobody else can open is a real property; GrabMail’s public mailboxes and alias are not the same thing.
- You send from the address. GrabMail cannot reply to anything, ever. A Pro address can.
- You paid for the year. EmailOnDeck gives no refunds. Run both on the next project rather than abandoning a working one.
Questions
Is GrabMail an EmailOnDeck alternative?
For a free throwaway address, yes, with one trade: GrabMail lets you choose the address and keeps its mail 5 days, but the mailbox is public, where EmailOnDeck’s is private. It also has a keyless API, your own domain and an MCP server, which EmailOnDeck reserves for Pro or does not offer.
How much does EmailOnDeck Pro cost?
0.000864 BTC for 30 days, also payable in ETH or USDT, with the cost in other currencies varying with Bitcoin; no dollar price is published, purchases are final, and six months at once earns 15% off on request. GrabMail’s paid plans start at $24 a month and buy only the off-blocklist domain pool.
Does EmailOnDeck have an API?
Yes, for Pro subscribers: a key passed on every call, 25,000 calls a day, actions to create and list addresses and read raw messages, and no sending through it. GrabMail’s API is keyless with no daily count.
How long does a free EmailOnDeck address last?
In its own words, “usually it lasts most of the day”, sooner if you close the browser or clear cookies, and the address is wiped a couple of days after creation. A GrabMail address lasts as long as you like; its messages last 5 days.
Which one works with AI agents?
GrabMail runs a free keyless MCP server with a blocking wait_for_message; EmailOnDeck publishes none. The client guide has the configuration.


