/api/v1/domains
List all public domains.
Response
{
"success": true,
"domains": [
{ "domain": "kufz.minhaishop.click", "status": "online" }
]
}
Simple REST API for your integrations.
/api/v1/domains
List all public domains.
{
"success": true,
"domains": [
{ "domain": "kufz.minhaishop.click", "status": "online" }
]
}
/api/v1/generate
Generate a new temporary email.
{ "domain": "kufz.minhaishop.click" }
{
"success": true,
"email": "laurenbk8j40lzf@kufz.minhaishop.click",
"url": "https://mail.cloudhoatoc.com/laurenbk8j40lzf@kufz.minhaishop.click"
}
/api/v1/inbox?email={email}
Fetch all messages for a temporary email.
{
"success": true,
"total": 1,
"messages": [
{
"id": 1,
"from": "noreply@example.com",
"subject": "Your verification code",
"code_2fa": "123456",
"received_at": "2026-04-27 15:30:00"
}
]
}
/api/v1/message?id={id}
Get full content of a single message.
{ "success": true, "message": { "id": 1, "body_html": "...", "body_text": "..." } }
/api/v1/add-domain
Submit a custom domain for verification.
{ "domain": "example.com", "webhook_url": "https://..." }
{ "success": true, "status": "pending" }
{
"event": "new_email",
"email": "laurenbk8j40lzf@kufz.minhaishop.click",
"from": "service@example.com",
"subject": "Your verification code",
"code": "123456",
"received_at": "2026-04-27 15:30:00"
}
curl -X GET "https://mail.cloudhoatoc.com/api/v1/domains"
curl -X POST "https://mail.cloudhoatoc.com/api/v1/generate" \
-H "Content-Type: application/json" \
-d '{"domain":"kufz.minhaishop.click"}'
curl -X GET "https://mail.cloudhoatoc.com/api/v1/inbox?email=test@kufz.minhaishop.click" \
-H "X-API-Key: tmk_live_YOUR_KEY"