Quick start
# Create an inbox
$ curl -X POST https://agents-inbox.com/api/v1/inboxes \
-H "Authorization: Bearer ak_..."
# Response
{ "address": "k7xm3n2p@agents-inbox.com", "id": "..." }
# Poll for messages
$ curl https://agents-inbox.com/api/v1/inboxes/{id}/messages?unseen=true \
-H "Authorization: Bearer ak_..."
API-first
Create inboxes, read messages, and manage everything through a simple REST API. Bearer token auth, JSON responses.
Instant addresses
Generate unique email addresses on the fly. Each inbox is ready to receive mail the moment it's created.
Real-time delivery
Emails arrive in milliseconds via Cloudflare Workers. Poll with ?unseen=true to get only new messages.