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", "I need a burner email", "disposable inbox", or any task requiring a throwaway email address.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "agent-burner" with this command: npx skills add Jose Maldonado/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": "a3f7b2c1@caledy.com", "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 address
  • key -- inbox key (UUID), the only credential you need
  • ttl -- 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

StatusMeaning
404Key expired or invalid
429Rate limit exceeded

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

AgentCall

Give your agent real phone numbers for SMS, OTP verification, and voice calls via the AgentCall API.

Registry SourceRecently Updated
6640Profile unavailable
Automation

Commune — Agent Email Inbox

Create and manage a persistent agent-only email inbox with full send/receive, semantic search, tagging, webhooks, and AI-powered structured data extraction.

Registry SourceRecently Updated
5320Profile unavailable
Coding

Filed — US Business Entity Search

Search and retrieve US business entity data (LLCs, corporations, partnerships) from official Secretary of State records via the Filed.dev API. Use when looki...

Registry SourceRecently Updated
2510Profile unavailable
Coding

Mailbird

Use the Mailbird MCP server (running locally inside the Mailbird email client) for any email-related task — inbox triage, sending, search, drafts, attachment...

Registry SourceRecently Updated
730Profile unavailable