Quick Start
Get up and running with in minutes. Here's a simple example to get you started.
# === DUAL KEY SECURITY ===
curl -X POST https://api.smsly.cloud/v1/sip-trunking/send \
-H "X-Smsly-Key-Id: sk_live_xxx" \
-H "X-SMSLY-SDK-KEY: sdk_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"to": "+1234567890",
"message": "Your verification code is: 123456"
}'Authentication
All API requests require authentication using an API key. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYYou can generate API keys from your dashboard settings.
API Endpoints
POST
/v1/sip-trunking/sendSend a message or initiate an action
GET
/v1/sip-trunking/status/:idCheck the status of a previous request
GET
/v1/sip-trunking/logsRetrieve logs and history
Full API Reference
Explore our complete API documentation with detailed request/response examples.
View Full Documentation