Next-gen Temporary Email Backend Documentation
Generates a cryptographically strong, random email address using UUID v4. No input required.
{
"status": "success",
"email": "user123@techchamak.com",
"token": "4f2e67..."
}
Fetches all messages for a specific mailbox. The email can be passed in the URL path or as a query parameter.
| Parameter | Type | Description |
|---|---|---|
| email PATH / QUERY | string | The full temp email address (e.g. user123@techchamak.com) |
| token QUERY | string | Mandatory. The secret token returned during creation. |
{
"status": "success",
"email": "user@techchamak.com",
"messages": [
{
"id": 142,
"from": "verified@google.com",
"subject": "Your Verification Code",
"date": "2024-02-12 14:20:05",
"body": "Your code is 123456"
}
]
}