If you find this useful,
Skill Details
Back to Skills

/twilio

by mrgoodb · View on GitHub

Send SMS, make voice calls, and manage WhatsApp messages via Twilio API. Use for notifications, 2FA, customer communications, and voice automation.

View on GitHub

Twilio

Send SMS, voice calls, and WhatsApp messages.

Environment Variables

export TWILIO_ACCOUNT_SID="ACxxxxxxxxxx"
export TWILIO_AUTH_TOKEN="your_auth_token"
export TWILIO_PHONE_NUMBER="+1234567890"

Send SMS

curl -X POST "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json" \
  -u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
  -d "From=$TWILIO_PHONE_NUMBER" \
  -d "To=+1recipient" \
  -d "Body=Hello from Twilio!"

Send WhatsApp

curl -X POST "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json" \
  -u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
  -d "From=whatsapp:+14155238886" \
  -d "To=whatsapp:+1recipient" \
  -d "Body=Your message"

Make Voice Call

curl -X POST "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Calls.json" \
  -u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN" \
  -d "From=$TWILIO_PHONE_NUMBER" \
  -d "To=+1recipient" \
  -d "Url=http://demo.twilio.com/docs/voice.xml"

List Messages

curl "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json?PageSize=20" \
  -u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN"

Check Balance

curl "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Balance.json" \
  -u "$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN"

Links

Related Productivity Skills

/action-gen

Generate GitHub Actions workflows from plain English. Use when setting up CI.

/blossom-hire

Post a job, task, or paid shift to hire local help in Blossom, then check eligible candidates.

/n8n-1-0-2

Manage n8n workflows and automations via API. Use when working with n8n workflows, executions, or au

/healthy-eating

Build healthy eating habits with meal logging, nutrition tracking, and food choices