Agent Burner
/install agent-burner
Agent Burner
Disposable email API. No signup, no API key.
Quick Start
# create an inbox
curl -X POST https://api.agentburner.com/inbox
# -> { "address": "[email protected]", "key": "550e8400-...", "ttl": 3600 }
# read emails
curl https://api.agentburner.com/inbox/550e8400-...
# -> { "address": "...", "entries": [{ "id": "...", "from": "...", "subject": "...", "receivedAt": "..." }] }
# get full email
curl https://api.agentburner.com/inbox/550e8400-.../EMAIL_ID
# -> { "body": "...", "html": "...", "urls": ["..."], ... }
# delete inbox (optional -- auto-expires)
curl -X DELETE https://api.agentburner.com/inbox/550e8400-...
API Reference
POST /inbox
Create a disposable inbox.
Body (optional): { "ttl": 60 } // TTL in minutes, default 60, max 360
Response: { "address": string, "key": string, "ttl": number }
address-- the email addresskey-- inbox key (UUID), the only credential you needttl-- inbox lifetime in seconds
Rate limited to 10 creations per minute per IP.
GET /inbox/:key
List received emails.
Response: { "address": string, "entries": [{ "id": string, "from": string, "subject": string, "receivedAt": string }] }
Returns 404 if key is expired or invalid.
GET /inbox/:key/:emailId
Get full email content.
Response: {
"id": string,
"from": string,
"to": string[],
"subject": string,
"body": string, // plain text
"html": string | null, // raw HTML if present
"urls": string[], // all extracted URLs
"receivedAt": string // ISO 8601
}
DELETE /inbox/:key
Delete inbox and all emails. Optional -- inboxes auto-expire.
Response: { "ok": true }
Key Details
- No auth required -- inbox key is the only credential
- Multiple trusted .com domains
- Auto-expiry -- 1 hour default, 6 hours max
- 50 emails per inbox (oldest dropped first)
- 10MB max email size
- URLs extracted from both HTML and plain text
Errors
| Status | Meaning |
|---|---|
| 404 | Key expired or invalid |
| 429 | Rate limit exceeded |
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install agent-burner - After installation, invoke the skill by name or use
/agent-burner - Provide required inputs per the skill's parameter spec and get structured output
What is Agent Burner?
Disposable email API. Use when you need a temporary email address -- receiving mail, reading contents, extracting URLs. Triggers include "create a temp email... It is an AI Agent Skill for Claude Code / OpenClaw, with 156 downloads so far.
How do I install Agent Burner?
Run "/install agent-burner" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Agent Burner free?
Yes, Agent Burner is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Agent Burner support?
Agent Burner is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Agent Burner?
It is built and maintained by jsemldonado (@jsemldonado); the current version is v0.2.1.