Welcome to the Mail Receiver API. This API allows you to receive and query emails efficiently.
Retrieve all received emails or filter them by recipient or sender.
Query Parameters:
to
(optional): Use this parameter to filter emails by the recipient's address.from
(optional): Use this parameter to filter emails by the sender's address.Example Usage:
GET /emails?to=example@domain.com
GET /emails?from=sender@domain.com
GET /emails?to=example@domain.com&from=sender@domain.com
The response is a JSON array of emails, each containing the following fields:
Field | Description |
---|---|
subject |
The subject of the email. |
from |
The sender's email address. |
to |
The recipient's email address. |
text |
The plain text content of the email. |