Integrate Zuvo's SMS marketing capabilities into your applications with our comprehensive REST API
Our RESTful API provides programmatic access to all Zuvo features
Standard HTTP methods and JSON responses for easy integration.
API keys and OAuth 2.0 support for secure access control.
Webhooks and real-time notifications for instant updates.
Secure your API requests with authentication headers
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Complete reference of all available API endpoints
/api/v1/sms/send
Send a single SMS message to a phone number.
{
"to": "+1234567890",
"message": "Hello from Zuvo!",
"from": "ZUVO"
}
{
"success": true,
"message_id": "msg_123456789",
"status": "queued"
}
/api/v1/campaigns
Retrieve a list of all campaigns.
{
"campaigns": [
{
"id": "camp_123",
"name": "Welcome Campaign",
"status": "active",
"created_at": "2024-01-15T10:30:00Z"
}
]
}
/api/v1/contacts
Add a new contact to your list.
{
"phone": "+1234567890",
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com"
}
Official SDKs for popular programming languages
Node.js and browser support
pip install zuvo-sdk
Composer package
Gem installation
Start building with our API today