Inbound email, wired to your code

Programmable inboxes for your workflows

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.

mybot@clankermails.cominboxbot.email
  • Webhooks in milliseconds
  • Parsed JSON, not raw MIME
  • No SMTP or IMAP
route · mybot@clankermails.com live
00.00 inbound from stripe.com RECEIVED
+0.01 POST /your/webhook 200 OK
+0.01 parsed → JSON via API STORED
sig HMAC-SHA256 verified SIGNED
// 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"]
Real email addresses
REST API + signed webhooks
Attachments + parsed data
Agents, scripts & no-code
Why teams wire it up

Email that behaves like an API

Inbound mail is still how half your tools talk to you. ClankerMails turns it into something your code can actually use.

Instant setup

Pick a name, get an address

Create mybot@clankermails.com and it is live immediately. No mail server, no DNS, no DKIM to configure.

Push or pull

React the instant mail lands

Get a signed webhook to your endpoint in milliseconds, or poll the REST API on your own schedule. Your call.

Clean payloads

Structured data, not raw MIME

Every message is parsed into tidy JSON: sender, subject, text, HTML, headers, and attachments. No mailparser required.

Use cases

What people wire up

Anything that arrives by email can become a webhook, an API call, or a row in your database.

AU

Automations & integrations

Turn inbound mail into events. Pipe it into Zapier, Make, n8n, or your own server the moment it arrives.

AL

Alerts & monitoring

Route GitHub, Stripe, Sentry, or uptime alerts to a handler that triages, filters, and acts on them.

DX

Parsing & data capture

Pull fields out of invoices, receipts, and confirmations and drop clean records into your database.

AI

AI agents & bots

Give Claude, ChatGPT, or OpenClaw a real address so they can read and act on their own mail. Hosted MCP included.

FW

Forwarding & filtering

Forward to your real inbox with per-sender allow and block lists. Keep the signal, drop the noise.

DG

Digests & newsletters

Subscribe an address to the newsletters you care about and roll them into one daily summary.

How it works

Three steps. Under a minute.

Sign up, create an inbox, point your code at it. That is the whole setup.

01

Create a free account

Sign up with Google or email. Takes about 30 seconds.

02

Create an inbox

Pick a name and your address is live instantly on clankermails.com or inboxbot.email.

03

Point your code at it

Poll the REST API, receive signed webhooks, or just forward it on. Mix and match per inbox.

What you skip

  • SMTP and IMAP servers
  • OAuth token refreshes
  • Gmail API quotas
  • Hand-parsing MIME
  • DKIM / SPF / DMARC setup

Works with everything

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.

Pricing

Start free. Scale when you need to.

A free sandbox to build against. Upgrade when your inboxes start doing real work.

Sandbox
$0 forever

Kick the tires. No credit card needed.

  • 1 inbox
  • 50 messages / month
  • 5 MB attachments
  • 1-day retention
Try the sandbox
Business
$29 / month

For high volume and longer retention.

  • 50 inboxes
  • 100,000 messages / month
  • 25 MB attachments
  • 90-day retention
  • Priority support
Start 14-day free trial
Ready

Give your next workflow a real inbox.