Hihemax Mail API · v1

Send & verify email from your app

A fast, simple REST API for transactional email and hosted email verification (one-time codes + magic links). Authenticate with an API key, pay per action in credits, and ship in minutes with official SDKs for Node, Python, Edge/Deno and PHP.

Try it in 10 seconds

Get an API key from the Developer section of your dashboard, then:

bash
curl -X POST https://hihemaxmail.hdock.app/api/v1/send \
  -H "Authorization: Bearer hm_your_key" \
  -H "Content-Type: application/json" \
  -d '{"to":"you@example.com","subject":"Hi","text":"It works!"}'

What you can do

  • Send transactional email — single messages or batches up to 100, with HTML, reply-to, cc/bcc.
  • Verify email addresses — hosted OTP codes and magic links, fully managed (generated, sent, hashed, expired, attempt-limited, single-use).
  • Inspect your account — credit balance and usage history.
  • Drop-in SDKs — one consistent surface across Node, Python, Edge/Deno and PHP, plus recipes for Supabase, Neon and Appwrite.

Conventions

FieldTypeDescription
Base URLhttpsAll endpoints live under https://hihemaxmail.hdock.app/api/v1.
FormatJSONRequests and responses are JSON. Send Content-Type: application/json on POST.
successbooleanEvery response carries a top-level "success" flag. Errors are false.
requestIdstringEvery response includes a requestId (req_…). Log it; quote it in support requests.
CORSenabledAccess-Control-Allow-Origin: * on every route, with OPTIONS preflight handled.
VersioningpathThe version is in the path (/api/v1). Breaking changes ship under a new version.