F-Mailbox
Private · Instant · Disposable

Your temporary inbox

Protect your real inbox from spam. Messages arrive instantly and everything disappears automatically after 10 minutes.

quiet.fox742@f-mailbox.com
Live connection◷ Expires in 09:52
PREMIUM PLACEMENTYour brand, seen at the right moment

Inbox

Messages update automatically. No refresh needed.

Your inbox is empty

Incoming mail will appear here automatically.

API v1 · STABLE

Simple API.
Temporary by design.

Access temporary mailbox messages through a simple REST API. Base URL: https://f-mailbox.com/api/v1

GET   /messages ✓ 200 JSON

Returns all messages associated with the queried email.

Query parameters

to — Email address to query.

page — Page number. Default: 1.

limit — Messages per page. Default: 20, maximum: 100.

content — Set to true to include message content. Default: false.

curl --request GET \ --url 'https://f-mailbox.com/api/v1/messages?to={EMAIL}' \ --header 'Content-Type: application/json'
{ "success": true, "page": 1, "limit": 20, "total": 2, "data": [ "68a123456789abcdef123456", "68a123456789abcdef123457" ] }
GET   /messages/{id} ✓ 200 JSON

Returns the complete payload for one temporary message.

id — The unique message ID.

curl --request GET \ --url 'https://f-mailbox.com/api/v1/messages/{ID}' \ --header 'Content-Type: application/json'
{ "success": true, "data": { "id": "68a123456789abcdef123456", "from": "security@github.com", "to": "user@f-mailbox.com", "subject": "Your verification code", "content": "Your verification code is 843921", "created_at": "2026-08-21T10:30:00.000Z" } }
DELETE   /messages ✓ 200 JSON

Permanently deletes all messages associated with the specified email address.

to — Email address whose messages will be deleted.

curl --request DELETE \ --url 'https://f-mailbox.com/api/v1/messages?to={EMAIL}' \ --header 'Content-Type: application/json'
{ "success": true, "message": "All messages deleted" }
DELETE   /messages/{id} ✓ 200 JSON

Permanently deletes one temporary message by its unique ID.

id — The unique message ID.

curl --request DELETE \ --url 'https://f-mailbox.com/api/v1/messages/{ID}' \ --header 'Content-Type: application/json'
{ "success": true, "message": "Message deleted" }
✓ Action completed successfully