InBuzzed developer docs
Email that ships with your product
One API for transactional sends, broadcast campaigns, templates, and audience management. Authenticate with an API key and start sending in minutes.
- 1Create an API key
Dashboard → API keys. Scope it to just the permissions you need.
- 2Call the API
One
POSTwith your key in theX-Api-Keyheader. - 3Delivered
Track every send in the dashboard log, or stream events to a webhook.
Send your first email
Grab an API key from your dashboard, replace the sender with a verified address from your workspace, and run:
curl -X POST https://api.inbuzzed.com/api/v1/esp/transactional/send \
-H "X-Api-Key: ib_live_..." \
-H "Content-Type: application/json" \
-d '{
"to": "recipient@example.com",
"fromemail": "hello@yourdomain.com",
"fromname": "Your Brand",
"subject": "Hello from InBuzzed",
"body": "<p>It works!</p>"
}'Guides
Create an API key, authenticate, and understand the response envelope.
One-to-one sends — receipts, resets, alerts — with templates and variables.
Create, test, and send campaigns to your contact lists.
Design once in the studio, personalize every send with {{variables}}.
Build lists, add contacts, and manage suppressions over the API.
Every endpoint, parameter, and response — in one place.