Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tempinbox.dev/llms.txt

Use this file to discover all available pages before exploring further.

Browser (no code)

1

Open Temp Email

Go to tempinbox.dev. A new inbox address is shown immediately — no signup needed.
2

Copy the address

Click the copy icon next to the address (e.g. [email protected]).
3

Use it anywhere

Paste it into any signup or verification form. The inbox updates automatically when mail arrives.
4

Read your email

Click the email in the inbox to open it. Copy verification codes or click magic links directly.

Via API (developers)

Create an address and poll for mail programmatically.
# 1. Create a new address
curl -X POST https://tempinbox.dev/api/new_address \
  -H "Content-Type: application/json" \
  -d '{}' \
  -c cookies.txt   # save cookies (jwt + session_id)

# Response:
# { "address": "[email protected]", "jwt": "eyJ..." }

Next steps

Authentication

How JWT and session cookies work.

Full API Reference

All endpoints with request/response schemas.

Playwright Guide

End-to-end email testing automation.

CI Pipeline

Use temp email in GitHub Actions.