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/run
curl -X POST \ https://agentlab.rishit.site/api/v1/agents/sms-sender/run \ -H "Authorization: Bearer ahub_lv_<your_api_key>" \ -H "Content-Type: application/json" \ -d '{ "to": "+919876543210", "message": "Hello! Your order #12345 has been shipped and will arrive by tomorrow." }'
Input 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"
}