API for developers

Throwaway mailboxes over curl.

Spin up mailboxes programmatically, pull inboxes via REST, or get messages pushed via webhook. Made for CI, QA suites and anti-bot workflows.

~/mailiy/quickstart
60 second quickstart
01$ curl -X POST https://api.mailiy.com/v1/mailbox \
02 -H 'Authorization: Bearer mly_***********' \
03 -d '{ "ttl": 1800 }'
04
05→ 201 Created
06{ "address": "f4r1y2@mailiy.com",
07 "expires_at": "2026-05-13T18:42:00Z" }
./tier_01
Free
€0/mo
calls500 / month
rate10 req/min
supportCommunity
webhooks
analytics
custom
./tier_02
Lite
€9/mo
calls10,000
rate60 req/min
supportEmail (72 h)
webhooks
analytics
custom
./tier_04
Business
€99/mo
calls500,000
rate1,000 req/min
supportSlack channel
webhooks
analytics
custom
./tier_05
Enterprise
On request/mo
calls1M+ / custom
rateUnmetered
supportSLA & TAM
webhooks
analytics
custom
REST endpoints
v1 · stable
POST/v1/mailboxCreate a mailbox with optional TTL.free+
GET/v1/mailbox/:idFetch mailbox metadata.free+
GET/v1/mailbox/:id/messagesList messages in inbox.free+
GET/v1/messages/:idFetch a full message with attachments.free+
DELETE/v1/mailbox/:idDrop the mailbox immediately.free+
POST/v1/webhooksSubscribe to inbound mail events.lite+