Pick a name, get an address
Create mybot@clankermails.com and it is live immediately. No mail server, no DNS, no DKIM to configure.
Give any workflow a real email address. Read it by REST API, react with signed webhooks, or forward it anywhere. Built for automations, scripts, and no-code tools, and just as happy powering AI agents.
// Create an inbox for your workflow
const inbox = await fetch("https://clankermails.com/v1/inboxes", {
method: "POST",
headers: { "Authorization": `Bearer ${apiKey}` },
body: JSON.stringify({ local_part: "mybot", webhook_url: url })
}).then(r => r.json());
// mybot@clankermails.com is live
// ...or just poll for new mail
const { messages } = await fetch(
`https://clankermails.com/v1/inboxes/${inbox.id}/messages`,
{ headers: { "Authorization": `Bearer ${apiKey}` } }
).then(r => r.json());
for (const msg of messages) handle(msg.from, msg.subject);import requests
API = "https://clankermails.com/v1"
headers = {"Authorization": f"Bearer {api_key}"}
# Create an inbox for your workflow
inbox = requests.post(
f"{API}/inboxes",
headers=headers,
json={"local_part": "mybot"}
).json()
# Poll for new mail
msgs = requests.get(
f"{API}/inboxes/{inbox['id']}/messages",
headers=headers
).json()["messages"]Inbound mail is still how half your tools talk to you. ClankerMails turns it into something your code can actually use.
Create mybot@clankermails.com and it is live immediately. No mail server, no DNS, no DKIM to configure.
Get a signed webhook to your endpoint in milliseconds, or poll the REST API on your own schedule. Your call.
Every message is parsed into tidy JSON: sender, subject, text, HTML, headers, and attachments. No mailparser required.
Anything that arrives by email can become a webhook, an API call, or a row in your database.
Turn inbound mail into events. Pipe it into Zapier, Make, n8n, or your own server the moment it arrives.
Route GitHub, Stripe, Sentry, or uptime alerts to a handler that triages, filters, and acts on them.
Pull fields out of invoices, receipts, and confirmations and drop clean records into your database.
Give Claude, ChatGPT, or OpenClaw a real address so they can read and act on their own mail. Hosted MCP included.
Forward to your real inbox with per-sender allow and block lists. Keep the signal, drop the noise.
Subscribe an address to the newsletters you care about and roll them into one daily summary.
Sign up, create an inbox, point your code at it. That is the whole setup.
Sign up with Google or email. Takes about 30 seconds.
Pick a name and your address is live instantly on clankermails.com or inboxbot.email.
Poll the REST API, receive signed webhooks, or just forward it on. Mix and match per inbox.
Claude, ChatGPT, OpenClaw, Zapier, Make, n8n, cron, or your own server. If it can take a webhook or an HTTP call, it works. Start from the docs.
A free sandbox to build against. Upgrade when your inboxes start doing real work.
Kick the tires. No credit card needed.
For real automations and side projects.
For high volume and longer retention.