# Guerrilla Mail — Zapi reference > Alamat email sekali pakai dari Guerrilla Mail — buat alamat lalu baca pesan yang masuk. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/temp-mail/guerrillamail - Endpoint catalog: https://zpi.web.id/category/temp-mail - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Guerrilla Mail **Category:** temp-mail · **Slug:** `guerrillamail` **Detail page:** https://zpi.web.id/api/temp-mail/guerrillamail Alamat email sekali pakai dari Guerrilla Mail — buat alamat lalu baca pesan yang masuk. **Tags:** tempmail, email, disposable, otp ### Create Buat alamat email sekali pakai. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/temp-mail:guerrillamail/create` **Parameters:** _No parameters._ **cURL:** ```bash curl "https://api.zpi.web.id/v1/temp-mail:guerrillamail/create" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/temp-mail:guerrillamail/create", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/temp-mail:guerrillamail/create", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "address": "guqttpip@guerrillamailblock.com", "createdAt": "2026-08-07T09:43:34.000Z", "expiresAt": "2026-08-07T10:43:34.000Z", "durationMinutes": 60 } ``` --- ### Inbox Baca pesan yang masuk ke alamat sekali pakai. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/temp-mail:guerrillamail/inbox/:address` **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `address` | string | path | yes | The disposable address to read (as returned by create). | **cURL:** ```bash curl "https://api.zpi.web.id/v1/temp-mail:guerrillamail/inbox/:address" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/temp-mail:guerrillamail/inbox/:address", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/temp-mail:guerrillamail/inbox/:address", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 1, "items": [ { "id": "1", "from": "no-reply@guerrillamail.com", "isRead": false, "content": "Dear Random User,\r\n\r\nThank you for using Guerrilla Mail - your temporary email address friend and spam fighter's ally!\r\n\r\nYour disposable email address has been created ready for use.\r\n\r\nEmail: aqqifnke@sharklasers.com\r\n\r\nTips & Notes:\r\n\r\n- You can change this email address! Place your mouse over the Inbox ID at the top of this page and click to edit.\r\n\r\n- Once you change to a new address, the old address will remain available, simply change back to it. (Note: email is kept for 1 hour)\r\n\r\n- Waiting for your mail? There is no need to refresh the page, new emails will be added to the list as they come in.\r\n\r\n- All Emails are deleted after 1 hour.\r\n\r\nClick on the back the \"« Back to inbox\" to go back to the mail list\r\n\r\nThanks,\r\n\r\nGuerrilla Mail Team\r\nhttp://www.guerrillamail.com/\r\n\r\n\"Free to download, but you have to give your email address so they can inevitably attempt to sell you stuff in the future? guerrillamail.com FTW!\"\r\n\r\nConnect with us:\r\nhttps://www.facebook.com/GuerrillaMail\r\nhttps://twitter.com/GuerrillaMail", "preview": "Dear Random User,\r\n\r\nThank you for using Guerrilla Mail - your temporary email address friend and spam fighter's ally!\r\n\r\nYour disposable email address has been created ready for use.\r\n\r\nEmail: aqqifn", "subject": "Welcome to Guerrilla Mail" } ], "address": "aqqifnke@guerrillamailblock.com" } ``` --- _Generated: 2026-08-08T02:21:24.015Z_