Send your first SMS in three steps.
Sign up, pair a phone (or create a simulator), and generate an API key from the dashboard.
curl -X POST https://api.zorilsms.app/api/public/v1/sms/send \
-H "Authorization: Bearer pk_live_..." \
-H "Content-Type: application/json" \
-d '{"to":"+15551234567","message":"Hello from Zoril SMS"}'Add a webhook to your account and we'll POST signed events to your URL:
{
"event": "message.inbound",
"data": {
"id": "...",
"from_number": "+15551234567",
"body": "STOP"
},
"timestamp": "..."
}The body is signed with HMAC-SHA256 using your webhook secret in the x-zoril-signature header.