# DESTROY.NETWORK > Free temp mail service. Create disposable and temporary email addresses instantly - no signup, no tracking, automatic data expiration. ## About DESTROY.NETWORK is a free temp mail and disposable email service by Buun Group. Create temporary email addresses instantly without signup. Also known as: temp mail, temporary email, throwaway email, burner email, fake email generator. Perfect for protecting your privacy, avoiding spam, and testing applications. ## Key Features - Instant inbox generation - no signup required - Real-time email updates via SSE/WebSocket - Automatic data expiration for privacy - REST API + TypeScript SDK for developers - CLI tool (`dna`) for terminal and CI/CD automation - Agent identities with auto-generated email + password pairs - Agent vault: AES-256 encrypted credential storage with search and categories - Verification code extraction (13+ patterns + custom regex) - Inbox rules: auto-forward, label, or delete by sender/subject regex - Email forwarding to personal address - Team shared inboxes with live presence and read receipts - Browser extensions for Chrome, Firefox, Edge, Brave, Opera - Webhooks for message.received, inbox.created, inbox.expired events - Custom inbox names and 45-day name reservation (Business) - Inbox templates for reusable configurations ## CLI Tool: dna Install: `npm install -g @buun_group/dna` Pre-built binaries for Linux, macOS, and Windows. No Go toolchain needed. Key commands: - `dna create` - Create disposable email + password identity - `dna create --persona --country US` - Create identity with fictional persona (name, address, phone, DOB) - `dna config set defaults.persona true` - Default to always generating a persona - `dna verify --timeout 30` - Wait for and extract verification codes - `dna wait ` - Long-poll for incoming emails - `dna messages ` - List inbox messages - `dna vault list` - List vault entries (with --search and --category filters) - `dna vault get ` - Decrypt and show a vault entry with password - `dna vault save` - Save credentials to vault (or save from active identity with identity ID) - `dna vault delete ` - Delete vault entry - `dna auth login` - Save API key - `dna config list` - View/modify persistent config (defaults for persona, country, gender) Requires Pro plan API key (`sk_live_...`). ## API Overview The DESTROY.NETWORK API allows developers to programmatically create and manage disposable inboxes. ### Inboxes POST /api/inbox - Create inbox GET /api/inbox/{id} - Get inbox details GET /api/inbox/{id}/messages - List messages DELETE /api/inbox/{id} - Delete inbox ### Agent Identities (Pro+) POST /api/agent/identities - Create identity with email + password (optional: inboxId to attach to existing inbox, persona, country, gender) GET /api/agent/identities/{id}/verify - Extract verification codes GET /api/agent/identities/{id}/wait - Long-poll for new email GET /api/agent/identities/{id}/messages - List messages PATCH /api/agent/identities/{id} - Extend TTL DELETE /api/agent/identities/{id} - Delete identity ### Agent Vault (Pro+) POST /api/vault - Save credentials to encrypted vault (manual email + password) POST /api/vault/from-identity/{identityId} - Save an active agent identity to the vault (auto-pulls email, password, persona) GET /api/vault - List vault entries (metadata only, passwords not included) GET /api/vault/{id} - Get vault entry with decrypted password and persona PATCH /api/vault/{id} - Update vault entry metadata (siteName, category, notes, pinned) DELETE /api/vault/{id} - Delete vault entry POST /api/vault/bulk-delete - Delete multiple vault entries by IDs POST /api/vault/bulk-update - Update category for multiple entries ### Inbox Rules (Pro+) POST /api/rules - Create rule (forward/label/delete by sender/subject regex) GET /api/rules - List rules ### Webhooks (Pro+) POST /api/webhooks - Register webhook URL Events: message.received, inbox.created, inbox.expired ### Teams (Business) POST /api/teams - Create team workspace POST /api/teams/{id}/invite - Invite member (owner/admin/member roles) POST /api/inbox/{id}/share - Share inbox with team ### Documentation Full API documentation: https://destroy.network/docs CLI reference: https://destroy.network/docs/cli Agent API docs: https://destroy.network/docs/agent ## Pricing - Anonymous (no signup): 1 active inbox at a time, 2 created per hour per IP, 10 min lifetime - Free (signed in): 3 active inboxes, 5 per hour, 10 min lifetime, no API access - Pro ($5/mo): 10 inboxes, 30 min, 100 req/min, inbox rules, webhooks, agent identities (10) with persona generation, vault (50 entries), forwarding - Business ($15/mo): 50 inboxes, 60 min, 1000 req/min, teams (5x25 members), shared inboxes, agent identities (50) with persona generation, vault (500 entries), priority support ## Claude Code + Browser Automation Copy-paste prompts for using `dna` with Claude Code and Chrome browser automation: ``` claude --dangerously-skip-permissions --chrome \ "Read https://destroy.network/llms-full.txt for dna CLI docs. \ Run dna create --persona --country US --json to create a disposable \ identity. Open https://example.com/signup in Chrome, fill the form \ with the persona email, password, name, and DOB. Submit, then run \ dna verify --timeout 30 to get the code. Enter it and complete \ registration. Save to vault with dna vault save." ``` More examples at: https://destroy.network/docs/cli#claude-code-examples ## Agent Playbooks Step-by-step guides for common dna CLI workflows: https://destroy.network/docs/playbooks - Basic Signup Flow - create identity, sign up, verify, clean up - Full Signup with Persona - generate fictional identity with name, address, phone, DOB - Handling Verification Flows - code extraction, custom regex, link extraction, retry logic - Batch Identity Creation - create/manage/cleanup multiple identities - Country-Specific Personas - address formats, phone formats, name ordering for 17 countries - Configure CLI Defaults - persistent config for persona, country, gender defaults ## Pages - Home: https://destroy.network/ - Create Inbox: https://destroy.network/inbox/new - Pricing: https://destroy.network/pricing - API Docs: https://destroy.network/docs - CLI Docs: https://destroy.network/docs/cli - Playbooks: https://destroy.network/docs/playbooks - Agent Docs: https://destroy.network/docs/agent - Vault Docs: https://destroy.network/docs/vault - SDK Docs: https://destroy.network/docs?view=sdk - Blog: https://destroy.network/blog - Changelog: https://destroy.network/changelog - Browser Extension: https://destroy.network/extension - Privacy Policy: https://destroy.network/privacy - Terms of Service: https://destroy.network/terms ## Use Cases 1. **AI Agent Automation** - Create disposable identities for automated signups with verification code extraction 2. **Website Signups** - Avoid spam when signing up for newsletters or services 3. **QA Testing** - Teams share disposable inboxes for testing email flows with live presence 4. **CI/CD Pipelines** - Automated email verification in Playwright/Cypress integration tests 5. **Email Automation** - Forward, label, or auto-delete incoming emails with inbox rules 6. **Privacy** - Keep your real email address private from trackers and data brokers ## Contact Website: https://destroy.network Parent Company: Buun Group ## Optional For detailed documentation, see: https://destroy.network/llms-full.txt