// developers

An email API
that gets out of the way.

REST over HTTPS. JSON in, JSON out. Idempotency keys, deterministic error codes, signed webhooks. Built by people who hate touching email infrastructure as much as you do.

curl — send your first emailcurl https://api.voltmail.dev/v1/emails \
  -H "Authorization: Bearer $VOLTMAIL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "noreply@receipts.acme.dev",
    "to": ["jane@example.com"],
    "subject": "Hello",
    "text": "It works."
  }'

// jump in