VORTEX TEMPMAIL

[ email sementara | gratis | tanpa registrasi ]

[ EMAIL ANDA ]
KOTAK MASUK

FAQ

[ pertanyaan yang sering diajukan ]

[?] Apa itu Vortex TempMail?
Vortex TempMail adalah layanan email sementara gratis. Anda bisa menerima email tanpa registrasi.
[?] Berapa lama email bertahan?
Email bertahan selama sesi aktif. Hapus kapan saja dengan tombol hapus.
[?] Apakah aman?
Aman. Tidak ada data pribadi yang disimpan.
[?] Bisa membalas email?
Saat ini hanya support menerima email.

DOCUMENTATION

[ integrasikan ke aplikasi anda ]

[ BASE URL ]
https://tempmail.xvortex.app/api/
[ GET /api/generate ]
Generate email sementara baru
{ "success": true, "token": "abc123...", "email": "user123@mailtemp.edu.pl", "author": "Radit DVC" }
[ GET /api/inbox?token=xxx ]
Cek daftar email masuk
{ "success": true, "total": 3, "emails": [ { "id": "123", "from": "sender@example.com", "subject": "Hello", "date": "2026-06-15 10:00:00" }, { "id": "456", "from": "another@example.com", "subject": "Welcome", "date": "2026-06-15 10:05:00" } ], "author": "Radit DVC" }
[ GET /api/read?token=xxx&id=xxx ]
Baca detail email
{ "success": true, "id": "123", "from": "sender@example.com", "to": "user@mailtemp.edu.pl", "subject": "Hello", "date": "2026-06-15 10:00:00", "body": "Email content here", "author": "Radit DVC" }
[ DELETE /api/delete?token=xxx&id=xxx ]
Hapus satu email
{ "success": true, "message": "Email deleted successfully", "author": "Radit DVC" }
[ DELETE /api/delete-session?token=xxx ]
Hapus semua email dalam session
{ "success": true, "message": "Session deleted successfully", "author": "Radit DVC" }
[ GET /api/domains ]
Daftar domain tersedia
{ "success": true, "domains": [ "mailtemp.edu.pl", "tempmail.com", "domain2.com" ], "author": "Radit DVC" }
[ cURL EXAMPLES ]
# Generate email baru curl -X GET "https://tempmail.xvortex.app/api/generate" # Cek inbox curl -X GET "https://tempmail.xvortex.app/api/inbox?token=YOUR_TOKEN" # Baca email curl -X GET "https://tempmail.xvortex.app/api/ead?token=YOUR_TOKEN&id=EMAIL_ID" # Hapus session curl -X DELETE "https://tempmail.xvortex.app/api/delete-session?token=YOUR_TOKEN"
BERHASIL