A comprehensive database of disposable email domains, available as a static website and API.
- 5,000+ disposable email domains
- Static JSON API for easy integration
- Searchable web interface
- Curated service information with metadata
The domain list is available as a JSON API at /api.json:
curl https://disposables.email/api.jsonEach entry contains:
{
"domain": "example.com",
"name": "Example",
"status": "unknown",
"pricing": "unknown",
"features": {
"api": false,
"customInbox": false,
"attachments": false,
"replyable": false
},
"domainCount": 1,
"altDomains": [],
"dateAdded": "2024-01-01"
}- Bun runtime
bun install# Start development server
bun run dev
# Build for production
bun run build
# Start production server
bun run startDomain data is sourced from:
- disposable-email-domains
- Manual curation for popular services
To add new domains:
- Add domains to
domains.csv(one per line) - Run
bun run buildto regenerate the API
For curated services with full metadata, edit src/data/services.ts.
This design is lifted wholesale from models.dev. Thank you, models dot dev team.
MIT