Get your AI Inbx integration running in minutes. This guide walks you through creating your account, verifying a domain, and sending your first email.
1
Sign up and create your organization
Visit aiinbx.com to create your account and spin up your first organization. This is where you’ll manage domains, API keys, and webhooks.
2
Connect your domain
Before you can send or receive emails, you need to connect a domain you own. Head to Domains in your dashboard, add your domain, and follow the DNS instructions to verify ownership.
You can only send emails from verified domains. Make sure to complete the DNS verification process.
3
Get your API key
Navigate to API Keys in your dashboard and create a new API key. Keep this secure – you’ll use it to authenticate all API requests.
Need human-in-the-loop approval? Enable Draft Mode for the key. Every send or reply created with that key will be stored as a draft instead of being delivered until you manually send it in the dashboard.
4
Send your first email
Now you’re ready to send your first email! Here’s a simple example using curl:
Copy
curl -X POST "https://aiinbx.com/api/v1/emails/send" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "to": "recipient@example.com", "from": "hello@yourdomain.com", "subject": "Hello from AI Inbx!", "html": "<p>This is my first email sent through AI Inbx.</p>", "is_draft": true }'
You’ll receive a response with your email ID, thread ID, and message ID: