All systems operational · 2 domains active

Disposable email
for serious builders.

Instant temporary inboxes, full REST API, WebSocket delivery, and IMAP/SMTP for premium. Built to handle the real work.

2
Active domains
<1s
Inbox creation
10min
Auto-expiry
REST
Full API
Everything you need.

From quick burner addresses to full programmatic control via API.

Instant Inboxes

Create a working inbox in milliseconds. One click, no setup.

🌐

2 Domains

dvdhub.qzz.io and moonhub.qzz.io. Premium users choose which.

🔌

WebSocket Push

Emails delivered in real-time. No polling, no delays.

🔑

REST API

Full programmatic access with API keys and rate limiting.

📬

IMAP + SMTP

Premium: connect any email client. Send replies from your temp address.

🔔

Discord Webhooks

Real-time notifications to your Discord server on any event.

📊

Analytics

Track emails, API usage, domain breakdown and activity over time.

⏱️

Custom Expiry

Premium: set inboxes to 10min, 1hr, 6hr, or 24hr lifetime.

🛡️

Rate Limited API

Secure API with per-day limits. Free: 100/day. Premium: unlimited.

Simple, honest plans.

Start free. Upgrade when you need more power.

Free
$0
Forever free
5 active inboxes
REST API access
Discord webhooks
100 API calls/day
Choose domain
Custom expiry
IMAP / SMTP
Sign in to your VoidMail account
Free forever. No credit card required.
Overview
Live
FREE
0
Active Inboxes
of 5 max
0
Emails Today
0
API Calls Today
0
Total Emails
Quick Generate
Recent Activity
No recent activity
Active Inboxes
No active inboxes
Generate one from Overview
0
Total Emails
0
Total Inboxes Created
0
API Calls Today
Emails per Day
Last 30 days
Domain Usage
Recent Emails
Generate New Key
Your API Keys
Rate Limits
0
Used today
100
Daily limit
100
Remaining
🔒
Premium Feature

IMAP and SMTP access lets you connect email clients like Thunderbird or Outlook, and send emails from your temp addresses.

Discord Webhook

Notify on Login

Alert when your account signs in

Notify on Email

Alert when an inbox receives email

Notify on Signup

Confirmation when account was created

Link Discord

Link your Discord ID to use /redeem and /status in our bot.

🎁 Redeem Key

Get a key from our Discord server using /genkey or ask an admin.

Premium Benefits
20 active inboxes
Choose your domain
Custom expiry (up to 24hr)
IMAP + SMTP access
Unlimited API calls

Introduction

VoidMail provides a simple REST API to create and manage disposable email inboxes programmatically. All API endpoints are under:

https://dvdhub.qzz.io/v1

Authentication

All API requests must include your API key in the request header. Get yours from the Dashboard → API Keys.

X-API-Key: vm_your_api_key_here

Create Inbox

POST/v1/inbox/create

Creates a new temporary inbox. Returns the address and expiry time.

ParameterTypeRequiredDescription
domainstringNodvdhub.qzz.io or moonhub.qzz.io (Premium only)
expirystringNo10min, 1hr, 6hr, 24hr (Premium only)
curl -X POST https://dvdhub.qzz.io/v1/inbox/create \ -H "X-API-Key: vm_your_key" \ -H "Content-Type: application/json" \ -d '{"domain": "moonhub.qzz.io", "expiry": "1hr"}'
{ "success": true, "address": "a8f3k2d1b9@moonhub.qzz.io", "domain": "moonhub.qzz.io", "expires_at": "2026-04-26T16:00:00.000Z" }

List Inboxes

GET/v1/inbox
curl https://dvdhub.qzz.io/v1/inbox \ -H "X-API-Key: vm_your_key"
{ "inboxes": [ { "address": "a8f3k2d1b9@dvdhub.qzz.io", "domain": "dvdhub.qzz.io", "expires_at": "2026-04-26T15:00:00.000Z", "created_at": "2026-04-26T14:50:00.000Z" } ] }

Get Emails

GET/v1/inbox/:address
curl https://dvdhub.qzz.io/v1/inbox/a8f3k2d1b9@dvdhub.qzz.io \ -H "X-API-Key: vm_your_key"
{ "address": "a8f3k2d1b9@dvdhub.qzz.io", "expires_at": "2026-04-26T15:00:00.000Z", "emails": [ { "id": 1, "from_address": "sender@gmail.com", "subject": "Hello there!", "body_text": "Email body here.", "received_at": "2026-04-26T14:55:00.000Z" } ] }

Delete Inbox

DELETE/v1/inbox/:address
curl -X DELETE https://dvdhub.qzz.io/v1/inbox/a8f3k2d1b9@dvdhub.qzz.io \ -H "X-API-Key: vm_your_key"

Plans & Limits

FeatureFreePremium
Active Inboxes520
API Calls / Day100Unlimited
Choose Domain
Custom Expiry
IMAP / SMTP

Error Codes

CodeMeaning
401Missing or invalid API key
403Plan limit reached or premium feature
404Inbox not found
429Daily API rate limit exceeded
500Internal server error
System Status
Checking...