v1.0 API
Quickstart Guide
Learn how to send your first email using Reach in under 2 minutes.
2. Send HTTP Request
curl -X POST https://api.reach.africa/v1/emails \
-H "Authorization: Bearer rch_live_9f8a371b2" \
-H "Content-Type: application/json" \
-d '{
"from": "noreply@yourdomain.com",
"to": "customer@gmail.com",
"subject": "Order Confirmation #1042",
"html": "<h2>Thank you for your order!</h2><p>Your items will ship soon.</p>"
}'Authentication
All API requests must pass a valid Bearer Token in the authorization header:
Authorization: Bearer YOUR_API_KEY