Developer API
Build powerful applications with our fast, reliable, and anonymous temporary email infrastructure. Free for everyone.
Base URL
https://api.techchamak.com
POST
/create
Generate a new temporary email address and access token. No registration required.
Request Details
No parameters required. Simply send a POST request to the endpoint.
Response Example
{
"status": "success",
"email": "[email protected]",
"token": "auth_token_here"
} GET
/inbox/{email}
Retrieve incoming messages for a specific email address in real-time.
URL Parameters
| Name | Type | Description |
|---|---|---|
| Path | The temporary email address to check. | |
| token | Query | Authentication token received during /create. |
Response Example
{
"status": "success",
"messages": [
{
"id": 123,
"from": "[email protected]",
"subject": "Verification Code",
"body": "Your code is 123456",
"date": "2024-02-12T10:00:00Z"
}
]
} Developer Policy
To ensure high availability for all developers, we implement a fair-use rate limit of 10 requests per minute. Temporary email addresses and their messages are permanently deleted after 24 hours of inactivity. Do not use this API for sensitive long-term storage or critical production accounts.