POST
/api/address
Create a temporary address.
curl -X POST "https://api.dmobot.store/api/address" \
-H "Content-Type: application/json" \
-d "{}"
Omit domain or send {"domain":"random"} to pick a random domain.
{
"address": "mailxxxx@vip186ok.space",
"local_part": "mailxxxx",
"domain": "vip186ok.space"
}
GET
/api/inbox?address={address}
Poll inbox for an address.
curl "https://api.dmobot.store/api/inbox?address=mailxxxx@dmobot.store"
GET
/api/email/{id}
Read message body. Use text_body first, fall back to raw_body.
curl "https://api.dmobot.store/api/email/EMAIL_ID"
GET
/api/latest?address={address}
Return the newest email with text_body included.
curl "https://api.dmobot.store/api/latest?address=mailxxxx@dmobot.store"
GET
/api/wait?address={address}&timeout=20
Wait up to 20 seconds for an incoming message.
curl "https://api.dmobot.store/api/wait?address=mailxxxx@dmobot.store&timeout=20"
DELETE
/api/email/{id}
Delete a message after your tool finishes using it.
curl -X DELETE "https://api.dmobot.store/api/email/EMAIL_ID"