Skip to content

Developers

Send email from your app

The Chebu API sends receipts, sign-in links, and password resets from your own verified domain. It's included with every Business plan.

  • Base URL https://api.chebu.io, JSON over HTTPS
  • Bearer API keys with full or sending-only access
  • Compatible with Resend's API and SDKs
  • SMTP relay at smtp.chebu.email
Send an email
curl -X POST https://api.chebu.io/emails \
  -H "Authorization: Bearer $CHEBU_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "Northwind <[email protected]>",
    "to": ["[email protected]"],
    "subject": "Your receipt #1042",
    "html": "<p>Thanks for your order.</p>"
  }'
Start with the quickstart