Documentation Index
Fetch the complete documentation index at: https://docs.unosend.co/llms.txt
Use this file to discover all available pages before exploring further.
1. Get Onboarded
Book a call or contact us to get set up. We’ll provision your account and provide your Send Mail Token.
2. Add a Domain
Add your sending domain and configure the DNS records we provide (SPF, DKIM, CNAME tracking).
# Add domain
curl -X POST https://api.unosend.co/v1/domains \
-H "Authorization: Bearer un_your_api_key" \
-H "Content-Type: application/json" \
-d '{"domain": "yourdomain.com"}'
# Verify after adding DNS records
curl -X POST https://api.unosend.co/v1/domains/{id}/verify \
-H "Authorization: Bearer un_your_api_key"
3. Send an Email
curl -X POST https://api.unosend.co/v1/emails \
-H "Authorization: Bearer un_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"from": "hello@yourdomain.com",
"to": ["user@example.com"],
"subject": "Hello from Unosend",
"html": "<h1>Welcome!</h1><p>Your first email.</p>"
}'
Response:
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"from": "hello@yourdomain.com",
"to": ["user@example.com"],
"status": "queued"
}
Next Steps
Domain Verification
Set up SPF and DKIM
API Reference
See all endpoints