Be First in Line
Leave your email and well notify you the moment the IvaBuddy API launches. Early access developers will receive 3 months free API access and dedicated onboarding support.
API Use Cases
Send Transactional Email
Trigger emails from your application — order confirmations, OTP codes, invoices, password resets — programmatically via our SMTP or REST API.
Automate Email Workflows
Build sequences: onboarding flows, payment reminders, event notifications. Schedule thousands of emails with a single API call.
Manage Mailboxes
Create and delete mailboxes, set forwarding rules, retrieve inbox messages — all without logging into the dashboard.
Webhook Integrations
Receive real-time webhooks when emails are delivered, opened, bounced, or when new messages arrive in an inbox.
REST API Reference (Preview)
Base URL: https://api.ivabuddy.com
Sending Your First Email via API
<span class="kw">const</span> <span class="prop">response</span> = <span class="kw">await</span> fetch(<span class="str">"https://api.ivabuddy.com/v1/send"</span>, {
<span class="prop">method</span>: <span class="str">POST</span>,
<span class="prop">headers</span>: {
<span class="str">Authorization</span>: <span class="str">Bearer YOUR_API_KEY</span>,
<span class="str">Content-Type</span>: <span class="str">application/json</span>,
},
<span class="prop">body</span>: JSON.stringify({
<span class="prop">from</span>: <span class="str">noreply@yourcompany.com</span>,
<span class="prop">to</span>: [<span class="str">customer@example.com</span>],
<span class="prop">subject</span>: <span class="str">Your Order Confirmation — #12345</span>,
<span class="prop">html</span>: <span class="str"><h1>Thank you for your order!</h1></span>,
<span class="prop">text</span>: <span class="str">Thank you for your order!</span>,
}),
});
<span class="kw">const</span> <span class="prop">data</span> = <span class="kw">await</span> response.json();
<span class="val">// { "status": "queued", "messageId": "msg_abc123", "scheduledAt": null }</span>Full API documentation including authentication, rate limits, error codes, and SDKs for Node.js, Python, and PHP will be published at launch.
Questions About the API?
If you have a specific use case in mind or want to discuss a custom integration, reach out to our developer team.
Contact Developer Team