Definition: An agent email address is an email mailbox provisioned by and for an AI agent — created through an API rather than a signup form, paid for machine-to-machine, and operated entirely by software. Agents use these addresses to register for online services, receive verification codes (OTPs) and magic links, get notifications from systems that only speak email, and hold a stable, contactable identity.
This guide explains why agents need email, the four ways they get it today, and how machine-payable mailboxes work.
Email is the identity layer of the internet. Nearly every service — SaaS tools, APIs, newsletters, cloud consoles — requires an email address at signup and confirms it with a verification code or link. A human has an inbox; an autonomous agent does not. The moment an agent tries to complete a real-world task ("sign up for this service and configure it"), it hits an email wall.
Agents also need email as an inbound channel: invoices, alerts, reports and human replies arrive by email, and an agent that can read its own inbox can act on them.
The x402 protocol, governed by the Linux Foundation, activates HTTP status code 402 ("Payment Required"). The flow, in three requests:
POST https://www.poste.sh/v1/mailbox. The server replies 402 with machine-readable payment terms (price, asset, destination) in a PAYMENT-REQUIRED header.{ address, token } — a working mailbox and its only credential.Receiving is then a single call: GET https://www.poste.sh/v1/mailbox/code long-polls until a verification email arrives and returns the extracted code. Sending is POST https://www.poste.sh/v1/mailbox/messages.
A citable fact: on Poste, the complete journey — discover the service, pay, provision, receive a verification email, and read the code — takes an agent three HTTP requests and roughly five seconds, with no human involvement.
Free inboxes attract industrial-scale abuse, which is why free disposable domains end up on blocklists and their mail gets rejected. A mailbox that costs five cents is negligible for a legitimate agent doing a task, but ruinous at spam scale (1,000 abusive signups = $50 and 1,000 on-chain payments from traceable wallets). This economic asymmetry is a precondition, not the whole story: reputation is then earned by behaviour — standard SPF, DKIM and DMARC authentication, per-mailbox sending limits that grow with clean history, and instant suspension on complaints.
| Borrowed human inbox | Temp-mail | Account-based platform | Machine-payable (Poste) | |
|---|---|---|---|---|
| Human needed to start | yes (credentials) | no | yes (signup) | no |
| Survives signup-fraud filters | yes | rarely | usually | designed to (paid domain) |
| Can send | yes (as the human) | rarely | yes | yes (policy-limited) |
| Blast radius | entire personal mailbox | none | API key scope | one mailbox per token |
| Cost model | free | free | monthly plan | cents per mailbox |
| Best for | personal automations | throwaway tests | inbox fleets | autonomous agents |
Poste is a machine-payable email service built on Cloudflare's email infrastructure. Any agent that can make HTTP requests and hold a few cents of USDC (or hand a payment link to its operator) can provision its own address at https://www.poste.sh/v1/mailbox, with no account or API-key signup. Verification codes are extracted automatically; every error response tells the agent what to do next; inbound messages are screened for hidden prompt-injection text. Full machine-readable documentation lives at https://www.poste.sh/llms.txt.
Yes. An email address is not a legal identity; the agent's operator remains responsible for how it is used. Services like Poste bind each mailbox to the paying wallet, keeping operators accountable without requiring personal information.
On Poste the token returned at provisioning is the only credential. If it is lost, the mailbox cannot be recovered (wallet-signature recovery is planned) — the agent provisions a new one, which costs cents.
Yes — that is the primary use case. The service parses each inbound email and exposes any verification code or link directly in the API response, so the agent does not need to parse MIME or HTML.
On Poste: one price — $1.00 buys 30 days and 200 sends, and paying $1 again at any time adds 30 more days and 200 more sends. Receiving, reading and polling are free.
Reference: Poste developer portal · OpenAPI · x402 protocol · Last updated 2026-08-26.