NEW

BY BUUN GROUP

Disposable Email
for the Web

Instant temporary email addresses with real-time updates. Privacy-first with automatic data expiration. No signup required.

bash
curl -X POST https://destroy.network/api/inbox \
  -H "Content-Type: application/json"
Dissolving email illustration

Trusted by

Buun GroupBuun Group
FlowyrFlowyr
Dine-InDine-In
StarfightersStarfighters
Cloudflare
Buun GroupBuun Group
FlowyrFlowyr
Dine-InDine-In
StarfightersStarfighters
Cloudflare
Buun GroupBuun Group
FlowyrFlowyr
Dine-InDine-In
StarfightersStarfighters
Cloudflare
Buun GroupBuun Group
FlowyrFlowyr
Dine-InDine-In
StarfightersStarfighters
Cloudflare

Privacy without
compromise

Disposable inboxes, created in seconds

Instant Inbox Creation

Generate disposable email addresses with a single API call. Ready to receive emails in milliseconds.

POST/api/inboxresponse 47ms
{
  "id": "cpxNbXpHRKxH9U6ff8nBE",
  "address": "[email protected]",
  "expiresAt": "2025-01-30T12:00:00Z",
  "createdAt": "2025-01-29T12:00:00Z"
}

Real-time Updates

Receive emails instantly via Server-Sent Events. No polling, no delays - just real-time streaming.

EventSource
const stream = new EventSource(
  `/api/inbox/${id}/stream`
)

stream.onmessage = (event) => {
  const email = JSON.parse(event.data)
  console.log('New email:', email.subject)
}

Privacy by Design

Auto-expiring inboxes, zero tracking, no ads. Your data is deleted automatically after expiration.

24hrs
No trackingNo adsAuto-delete

Developer-First API

Full REST API with webhooks and custom domains. Integrate disposable emails into your workflow.

GET/api/inbox/:id/messages
$ curl "/api/inbox/cpxNbX.../messages"
[
  {
    "id": "msg_01HQ...",
    "from": "[email protected]",
    "subject": "Verify your email",
    "receivedAt": "2025-01-29T..."
  }
]

How it works

Get a disposable email in seconds. No registration, no hassle.

1

Generate Inbox

Click a button or call our API to create a temporary email address instantly.

2

Receive Emails

Use your temp address anywhere. Emails arrive in real-time with full content and attachments.

3

Stay Protected

Your real email stays private. No spam, no tracking, no unwanted newsletters.

4

Auto-Delete

When time's up, the inbox and all emails are permanently deleted. Zero trace.

Get the
Browser Extension

Create temp inboxes with a right-click, anywhere on the web

Right-Click to Create

Generate a disposable inbox anywhere on any webpage. No need to open a new tab.

github.com
Copy
Paste
Create temp inbox

Instant Clipboard

Email address automatically copied when created. Just paste it anywhere.

Copied to clipboard[email protected]

Email Notifications

Get notified instantly when emails arrive. Never miss a verification code.

New Email
[email protected]Verify your email address

Available Now

Works on all major browsers. Install in seconds.

Built for every use case

Whether you're a developer, privacy enthusiast, or casual user - disposable email has you covered.

Sign Up for Services

Create accounts without exposing your real email. Perfect for trials, one-time downloads, and new apps.

Free trialsDownloadsNewsletters

Development & Testing

Test email flows in your applications without cluttering real inboxes or hitting rate limits.

QA testingCI/CD pipelinesStaging

Privacy Protection

Keep your primary email safe from spam, data breaches, and unwanted marketing campaigns.

Online shoppingForumsContests

Online Marketplaces

Communicate with buyers and sellers without revealing your personal contact information.

CraigslistMarketplaceClassifieds

Verification Codes

Receive one-time codes and verification emails for services you don't fully trust.

OTP codesVerificationResets

Temporary Communication

Share a disposable address for short-term projects, events, or temporary collaborations.

Event RSVPsProjectsApplications

Trusted by developers

Join thousands of developers and privacy-conscious users who trust us for their temporary email needs.

0+Inboxes Created
0+Emails Destroyed
0msAvg Response
Finally a disposable email service that just works. The SSE integration is buttery smooth.
Sarah Chen
Sarah ChenFull-Stack Developer
The API is incredibly well designed. Integrated it into our CI pipeline in under an hour.
Marcus Rivera
Marcus RiveraDevOps Engineer
Privacy by design, not by policy. This is how all email services should work.
Alex Kim
Alex KimSecurity Researcher

Collaborate with
Team Workspaces

Share inboxes, invite members, and work together seamlessly

Create Teams

Spin up team workspaces for your organization. Up to 5 teams with 25 members each.

POST/api/teamsresponse 32ms
{
  "id": "team_8xK2mP...",
  "name": "Engineering",
  "memberCount": 5,
  "memberRole": "owner"
}

Invite Your Team

Add colleagues by email with role-based permissions. Owners, admins, and members.

S
A
J
M
+3
OwnerAdminMember

Share Inboxes

Share any inbox with your team. Everyone gets real-time access to incoming emails.

Built for Scale

Business plan includes generous limits. Perfect for growing organizations.

5Teams
25Members
Shared

Read Receipts

Know exactly who has seen each email. Never duplicate work again.

SSarah2m ago
AAlex5m ago

Live Presence

See teammates currently viewing the inbox in real-time.

Team Inbox
2 viewing
SA

Instant Sync

Changes propagate instantly via WebSocket. No refresh needed.

<50ms latency
0polling

Automate with
Inbox Rules

Create rules to forward, delete, or label emails automatically

Create Rules via API

Programmatically define rules to process incoming emails. Match by sender, subject, or content patterns.

POST/api/inbox-rulesresponse 28ms
{
  "id": "rule_8xK2mP...",
  "name": "GitHub Forward",
  "pattern": "*@github.com",
  "action": "forward"
}

Powerful Actions

Forward important emails, auto-delete spam, or organize with labels.

ForwardSend to real email
DeleteAuto-remove spam
LabelOrganize emails

Scale Your Workflow

Pro and Business plans include generous automation limits.

10Pro Rules
50Business
Labels

Forward to
Your Real Email

Auto-forward important emails while keeping your address private

Pattern Matching

Use wildcards to match senders and subjects. Create sophisticated routing rules.

*@github.comAll GitHub emails
*invoice*Subjects with "invoice"
support@*Any support address

Privacy Preserved

Your real email stays hidden. Senders only see your temporary address.

Sender
Temp inbox
You

Sender never sees your real email

Pro & Business

Email forwarding available on Pro and Business plans.

10Pro Rules
50Business
Forwards
Pro & Business

TypeScript SDK

The fastest way to integrate disposable email into your app

Quick Start

Create inboxes, read messages, and manage teams — all with a single import.

TypeScript
import { DestroyNetwork } from "@buun_group/destroy-network-sdk";

const dn = new DestroyNetwork();

// Create a temporary inbox
const inbox = await dn.inboxes.create({
  customName: "signup-test",
});

console.log(inbox.address);

// Check for new messages
const messages = await dn.inboxes.listMessages(inbox.id);
console.log(messages[0].subject);

Type-Safe Methods

Every method returns typed responses. Autocomplete guides you through every API call.

const result = await dn.inboxes.create()
Promise<Inbox>28ms

12 Resources

One consistent interface for the entire API. Every resource follows the same patterns.

inboxes
teams
webhooks
billing
labels
inboxRules
inboxTemplates
domains
apiKeys
user
auth
digest

Get Started

Install the SDK and start building. Available on Pro and Business plans.

$npm i @buun_group/destroy-network-sdk
View SDK Documentation

Choose your plan

Start free, upgrade when you need more power. All plans include core privacy features.

Compare plans

Free

$0
Popular

Pro

$5/mo

Business

$15/mo
Concurrent inboxes
3
10
50
Inbox lifetime
10 min
30 min
1 hour
Email delivery
60s polling
Real-time
Real-time
Custom inbox names
API access
100 req/min
1000 req/min
Team workspaces
5 teams
Attachments
5 MB
25 MB
50 MB
Mailbox extensions
Unlimited
Unlimited
Reserved inbox names
25 names
Choose email domain
Inbox templates
3
10
25
Inbox aliases
5/inbox
25/inbox
Email forwarding
Webhooks
Inbox rules
10 rules
50 rules
Email labels
10 labels
50 labels
Team members
25/team
Shared team inboxes
Real-time read receipts
Live presence
Priority support