This API allows you to create temporary email addresses and manage messages.
This documentation provides details on how to use the API endpoints.
GET api/domains/{apiKey}/{type}
GET api/domains/your-api-key/all
{rn "status": true,rn "data": {rn "domains": [rn {rn "domain": "free.com",rn "type": "Free"rn },rn {rn "domain": "lobage.com",rn "type": "Free"rn },rn {rn "domain": "premium.com",rn "type": "Premium"rn }rn ]rn }rn}POST api/emails/{apiKey}
POST api/emails/your-api-key
{rn "status": true,rn "data": {rn "email": "[email protected]",rn "domain": "example.com",rn "ip": "127.0.0.1",rn "fingerprint": "eef780ab2ec7535e66c1405c0bff1c64",rn "expire_at": "2026-01-01T00:00:00.000000Z",rn "created_at": "2026-01-01T00:00:00.000000Z",rn "id": 1,rn "email_token": "email_token"rn }rn}POST api/emails/{apiKey}/{email}/{username}/{domain}
POST api/emails/your-api-key/[email protected]/newuser/newexample.com
{rn "status": true,rn "data": {rn "email": "[email protected]",rn "domain": "newexample.com",rn "ip": "127.0.0.1",rn "fingerprint": "eef780ab2ec7535e66c1405c0bff1c64",rn "expire_at": "2026-01-01T00:00:00.000000Z",rn "created_at": "2026-01-01T00:00:00.000000Z",rn "id": 2,rn "email_token": "email_token"rn }rn}POST api/emails/{apiKey}/{email}
POST api/emails/your-api-key/[email protected]
{rn "status": true,rn "message": "Email has been successfully deleted."rn}GET api/messages/{apiKey}/{email}
GET api/messages/your-api-key/[email protected]
{rn "status": true,rn "mailbox": "[email protected]",rn "messages": [rn {rn "is_seen": true,rn "subject": "Test Subject",rn "from": "John Doe",rn "from_email": "[email protected]",rn "to": "[email protected]",rn "receivedAt": "2026-01-01 00:00:38",rn "id": "ap94AWDg123ELQz07vrVB9dLXlbqZM5NGwYxOJKko8n6m1",rn "html": true,rn "content": "Test content",rn "attachments": [rn {rn "name": "file.txt",rn "extension": "txt",rn "size": 91,rn "url": "http://yoursite.com/api/d/ap94AWDg123ELQz07vrVB9dLXlbqZM5NGwYxOJKko8n6m1/file.txt"rn }rn ]rn }rn ]rn}GET api/messages/{apiKey}/message/{messageId}
GET api/messages/your-api-key/message/ap94AWDg123ELQz07vrVB9dLXlbqZM5NGwYxOJKko8n6m1
{rn "status": true,rn "data": {rn "is_seen": true,rn "subject": "Test Subject",rn "from": "John Doe",rn "from_email": "[email protected]",rn "to": "[email protected]",rn "receivedAt": "2024-12-28 00:00:38",rn "id": "ap94AWDg123ELQz07vrVB9dLXlbqZM5NGwYxOJKko8n6m1",rn "html": true,rn "content": "Test content",rn "attachments": [rn {rn "name": "file.txt",rn "extension": "txt",rn "size": 91,rn "url": "http://yoursite.com/api/d/ap94AWDg123ELQz07vrVB9dLXlbqZM5NGwYxOJKko8n6m1/file.txt"rn }rn ]rn }rn}POST api/messages/{apiKey}/message/{messageId}
POST api/messages/your-api-key/message/ap94AWDg123ELQz07vrVB9dLXlbqZM5NGwYxOJKko8n6m1
{rn "status": true,rn "message": "Message was deleted successfully."rn}GET api/d/{hash_id}/{file?}
GET api/d/abc123/filename.pdf
The file will be downloaded directly.
GET /token/{email_token}
Send your visitors to a site with a token to create the same email.
The user will be redirected to a page where the email associated with the token is created or displayed.
Contact us to get your free API Key and start integrating today!