Guerrilla Mail
Spin up a throwaway inbox over a plain GET.
The AJAX API hands you a fresh disposable email address and a session token, then lets you poll that inbox for incoming messages. No account or key is needed to grab an address. Useful for exercising signup and verification flows in tests.
GET https://api.guerrillamail.com/ajax.php?f=get_email_address
{
"email_addr": "vldzpjyi@guerrillamailblock.com",
"email_timestamp": 1783247013,
"alias": "xtemjl+4pwntxolwm6tk",
"sid_token": "tsfvijqkfnf51co0bg0d5n6cd7"
}curl "https://api.guerrillamail.com/ajax.php?f=get_email_address"const res = await fetch("https://api.guerrillamail.com/ajax.php?f=get_email_address");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.guerrillamail.com/ajax.php?f=get_email_address")
print(res.json())/ajax.php?f=get_email_addressPROBEDSpin up a throwaway inbox over a plain GET.
/ajax.php?limit=5Ajax Php — documented GET route.
/ajax.php?page=1Ajax Php — documented GET route.
/ajax.phpAjax Php — documented GET route.
/ajax.php?f=get_email_address&ip=127.0.0.1&agent=Mozilla_foo_barAjax Php — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Guerrilla Mail: common questions
Is Guerrilla Mail free to use?
Yes — Guerrilla Mail is a free social & work API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Guerrilla Mail need an API key?
No — Guerrilla Mail needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Guerrilla Mail from the browser?
Yes — Guerrilla Mail returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Guerrilla Mail up right now?
As of our last scheduled check, Guerrilla Mail is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.