malq

a temporary email service. no credentials, just mail.

there's only 2 endpoints that source from 54 temporary mail services!

this is a demo instance of malq. to use the API, you will need to follow the additional instructions here.

GET /api/v1/session - creates a new mail session
{
"address": "email@sometempmail.com",
"token": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
"provider": "sometempmail.com"
}


GET /api/v1/inbox/:token - retrieves emails for the session
[
{
"from": "noreply@company.com",
"to": "email@sometempmail.com",
"subject": "Hello World!",
"body": "This is a temporary email service.",
"date": 1789928677614
},
...
]


note: due to our some of suppliers using websockets, tokens are "destroyed" after 2 minutes. womp womp.
this service is on github. thank me later.