UTILITY
SMS Sender
Send SMS messages programmatically to any phone number worldwide. Powered by Twilio. Perfect for notifications, OTPs, alerts, and customer communication workflows.
Pricing
₹199/ mo
API Reference
REST Endpoint
POST https://agentlab.rishit.site/api/v1/agents/sms-sender/runInput Schema
{
"to": {
"type": "text",
"example": "+919876543210",
"description": "Recipient phone number in E.164 format"
},
"message": {
"type": "textarea",
"example": "Hello! Your order #12345 has been shipped and will arrive by tomorrow.",
"description": "Message content (max 1600 characters)"
}
}Output Schema
{
"to": "string",
"sid": "string",
"sent": "boolean"
}