Welcome to Zend! This guide will help you get started with sending SMS, WhatsApp, and bulk messages.
Base URL: https://api.tryzend.com
All API requests require authentication using your API key:
x-api-key: YOUR_API_KEY
Send a simple SMS message:
POST /messages
{
  "to": "+233593152134",
  "body": "Hello from Zend!",
  "preferred_channels": ["sms"]
}
Response:
{
  "id": "6884da240f0e633b7b979bff",
  "status": "pending",
  "estimated_cost": 0.02,
  "message": "Message queued for processing"
}
| Channel | Template Required | Cost | Best For | 
|---|---|---|---|
| SMS | No | 0.035 | Simple notifications | 
| Yes | 0.065 | Rich media, buttons |