# Reusable.Email > Disposable email addresses, instantly. No signup required. Reusable.Email is a disposable email service that lets you create email addresses instantly with no signup. Use them for one-time verifications, free trials, or anywhere you need an email without giving away your real one. ## Core Features - **Public Inboxes** (Free): Instant, no signup, 90-day retention - **Private Inboxes** (Free): Password-protected, 180-day retention - **Managed Inboxes** ($3 lifetime): Full IMAP/SMTP, send & receive, 365-day retention, works with any email client - **Custom Domains** ($10/year): Route your@company.com, unlimited aliases, catch-all, auto SPF/DKIM/DMARC - **Whitelabel** ($30/month): Your brand, your domain, unlimited managed inboxes, full API, zero branding ## Key Pages - Homepage: https://reusable.email/ - Temp Mail for AI Agents: https://reusable.email/temp-mail-for-ai-agents - Blog: https://reusable.email/blog - Privacy Policy: https://reusable.email/privacy - Terms of Service: https://reusable.email/terms ## Temp Mail for AI Agents Reusable.Email exposes a zero-signup, curl-traversable temp mail API for autonomous agents. No account, API key, MCP server, SDK, browser extension, or installation is required. - Discovery manifest: https://api.reusable.email/v1/agent-tempmail - Human/SEO page: https://reusable.email/temp-mail-for-ai-agents - Default domain: reusable.email - Scope: create inboxes, wait for mail or OTP codes, list/read messages, fetch raw source, and delete messages - Not in scope: outbound email, replies, account management, billing, managed inboxes ### Agent Quickstart 1. Create an inbox: ```bash curl -s -X POST https://api.reusable.email/v1/agent-tempmail/inboxes \ -H 'Content-Type: application/json' \ -d '{"prefix":"agent"}' ``` The response includes `inbox.address` and `token`. Use the token as `Authorization: Inbox ` for mailbox operations. 2. Wait for a verification code: ```bash curl -s -X POST https://api.reusable.email/v1/agent-tempmail/inboxes/{address}/wait \ -H 'Authorization: Inbox {token}' \ -H 'Content-Type: application/json' \ -d '{"codeOnly":true,"timeoutSeconds":60}' ``` 3. Read or delete messages: ```bash curl -s https://api.reusable.email/v1/agent-tempmail/inboxes/{address}/messages \ -H 'Authorization: Inbox {token}' curl -s https://api.reusable.email/v1/agent-tempmail/inboxes/{address}/messages/{id} \ -H 'Authorization: Inbox {token}' curl -s -X DELETE https://api.reusable.email/v1/agent-tempmail/inboxes/{address}/messages/{id} \ -H 'Authorization: Inbox {token}' ``` Use URL encoding for `{address}` when needed, for example `agent%40reusable.email`. ## Pricing | Plan | Price | Includes | |------|-------|----------| | Public Inbox | Free | Instant inbox, 90-day retention, receive-only | | Private Inbox | Free | Password protection, 180-day retention | | Managed Inbox | $3 one-time | IMAP/SMTP, send/receive, 365-day retention, email client support | | Custom Domain | $10/year | Unlimited aliases, catch-all, auto DNS verification | | Whitelabel | $30/month | Unlimited managed inboxes, API, analytics, zero branding | ## How It Works 1. Pick any address — type any name, it's live instantly 2. Receive emails — codes, signups, and verifications arrive in real time 3. Auto-expires — emails auto-delete after retention period ## Technical Details - IMAP: imap.reusable.email:993 (STARTTLS) - SMTP: smtp.reusable.email:587 (STARTTLS) - API available via Whitelabel plan - 27 languages supported - SPF, DKIM, and DMARC configured automatically for custom domains ## Contact - Telegram: https://t.me/reusable - Website: https://reusable.email