Messaging Platforms

SMS API

Send and receive SMS messages through your AI agent. Integrate with Twilio, Vonage, or other SMS providers to enable text-based conversations with your AI agent.

Features

  • SMS sending
  • SMS receiving
  • Multi-provider support
  • Delivery status tracking
  • Media messages (MMS)
  • Group messaging
  • Rate limiting

Requirements

  • SMS provider account (Twilio, Vonage, etc.)
  • API credentials
  • Phone number
  • Webhook endpoint

Setup

  1. 1Connect "SMS API" integration
  2. 2Select agent
  3. 3Choose SMS provider (Twilio, Vonage, etc.)
  4. 4Enter provider API credentials
  5. 5Configure phone number
  6. 6Set up webhook for incoming SMS
  7. 7Test SMS sending and receiving

Authentication

Provider-specific API keys

Code Examples

cURL

curl -X POST https://your-domain.com/api/integrations/webhook?integration_id=YOUR_INTEGRATION_ID \
  -H "Content-Type: application/json" \
  -d '{
    "from": "+1234567890",
    "to": "+0987654321",
    "body": "Hello from SMS"
  }'