TigerMail API

Send your first email in 30 seconds.

1. Get your API key

Go to API Keys and create a new key. It starts with sk_live_.

2. Send an email

curl -X POST https://tigermail.io/api/v1/send \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": ["user@example.com"],
    "subject": "Hello from TigerMail",
    "html": "<p>Your first email!</p>"
  }'

3. That's it!

Your email is sent. Check the dashboard to see delivery status.

Response

{
  "success": true,
  "id": "clx1234567890",
  "messageId": "0100018f-1234-5678-9abc-def012345678"
}

Next steps