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.json
Each 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 start
Domain 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