Introduction
Welcome to the TempMail Plus API. Our API allows developers to integrate fully functional temporary email services into their own applications.
Authentication
Include your API Key in the request header to access endpoints.
Header Example
Authorization: Bearer YOUR_API_KEY
GET Generate New Email
Use this endpoint to generate a random temporary email address.
GET /get-email
Success Response (JSON)
{
"status": "success",
"email": "p2k9j1@tempmailplus.live",
"created_at": "2025-12-31 22:43:00"
}
GET Fetch Inbox Messages
Retrieve a list of messages for a specific email address.
GET /check-messages?email={email_address}
| Parameter | Type | Description |
|---|---|---|
| email REQUIRED | string | The email address to check. |
Response Example
[
{
"id": "102",
"from": "verify@facebook.com",
"subject": "Your Security Code: 12345",
"timestamp": "2025-12-31 22:40"
}
]
GET Read Full Message
Fetch the complete content of a specific message using its ID.
GET /read-message?email={email}&id={msg_id}
Response Example
{
"id": "102",
"from": "verify@facebook.com",
"subject": "Your Security Code: 12345",
"body": "Hi user, your code is 12345...",
"html_content": "
Full HTML Content here
"
}