Sendy API Documentation
Multi-channel communication platform — Email, WhatsApp, SMS & AI.
Quick Start
Send your first email in 3 steps.
1
Add a Channel
Configure an SMTP account, WhatsApp, or SMS gateway in the dashboard.
2
Generate an API Key
Go to API Keys and create a key with the permissions you need.
Important: Copy the key immediately — it won't be shown again.
3
Make Your First Request
curl -X POST https://sendy.cloud/api/v1/emails/send \
-H "Authorization: Bearer sk_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"to": "recipient@example.com",
"subject": "Hello from Sendy!",
"html": "<h1>It works!</h1>"
}'bash