Skip to main content
Get your AI Inbx integration running in minutes. This guide walks you through creating your account, using your instant organization 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

Your instant organization domain

Every organization gets its own domain automatically: orgslug.aiinbx.app. It’s ready the moment you create the org – no DNS setup required. You can start sending and receiving right away.
Want to use your brand domain? You can connect it anytime under Domains and continue using both.
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:
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@your-org-slug.aiinbx.app",
    "subject": "Hello from AI Inbx!",
    "html": "<p>This is my first email sent through AI Inbx.</p>"
  }'
You’ll receive a response with your email ID, thread ID, and message ID:
{
  "emailId": "email_abc123",
  "threadId": "thread_xyz789",
  "messageId": "<message@aiinbx.com>"
}
5

Explore your dashboard

Check out your Threads to see your conversations, monitor Metrics, and configure Webhooks for real-time notifications like inbound and outbound events.

What’s next?

Receive Emails

Receive emails in real-time with webhooks.