Skip to main content
AI agents that sign up for services hit the same wall every time: the verification email. TempInbox gives an agent a real, working inbox through three plain REST calls — no browser scraping, no IMAP, no API key.
Agents must respect the same boundaries as humans: TempInbox is receive-only and must not be used for banking, healthcare, legal, payroll, or any account requiring durable recovery. See the Acceptable Use Policy.

Minimal agent tool (any framework)

The whole integration is one polling loop. This works in any agent runtime that can call functions:
email-tool.mjs

Claude tool-use definition

Expose the inbox as tools in an Anthropic API tools array:
Your tool handler backs these with createInbox() / getVerificationCode() from the snippets above — pre-create the inbox at session start and hold the JWT server-side so the model never sees credentials.

LangChain tool wrapper

email_tool.py

Design notes for agent builders