← Back to Docs

Quick Start Guide

Get started with SendBaba in 5 minutes

1

Create an Account

Sign up for a free SendBaba account to get started.

Create Account →
2

Get Your API Key

Generate an API key from your dashboard.

  1. Go to Dashboard → API Keys
  2. Click "Generate New Key"
  3. Copy your API key (starts with sb_live_)
3

Verify Your Domain

Add DNS records to send from your own domain.

  1. Go to Dashboard → Domains
  2. Add your domain (e.g., yourdomain.com)
  3. Add the provided DNS records (SPF, DKIM, DMARC)
  4. Click "Verify Domain"
4

Send Your First Email

Use curl or any HTTP client to send an email:

curl -X POST https://api.sendbaba.com/v1/emails/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "you@yourdomain.com",
    "to": "recipient@example.com",
    "subject": "Hello from SendBaba!",
    "html": "<h1>It works!</h1>"
  }'
🎉

You're all set!

Start sending emails with SendBaba.