LaunchKit · 2026
Back to Skills

OpenClaw skill for Twilio APIs: Messaging, WhatsApp, Voice, Conversations, Verify, plus Studio, Lookup, Proxy.

4
1.6k downloads
by @codedao12

Setup & Installation

openclaw skills install @codedao12/twilio

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install twilio

Version History

v1.0.1Feb 9, 2026 - Version note by skill developer:

Expanded coverage to include additional core Twilio APIs and features. - Added references and guidance for Twilio Studio, Lookup, Proxy, Sync, TaskRouter, and Segment/Engage APIs. - Updated documentation to reflect broader API support beyond Messaging, WhatsApp, Voice, Conversations, Verify, and SendGrid. - Skill description and quick orientation now list new supported surfaces and workflow references.

What This Skill Does

Covers Twilio's communication APIs including SMS, MMS, WhatsApp, Voice, Verify, and Conversations. Works through direct HTTPS requests rather than SDK wrappers. Also includes Studio, Lookup, Proxy, Sync, TaskRouter, and Segment/Engage surfaces.

Direct HTTP request patterns give you full control over request/response handling without SDK abstraction layers that hide rate limits, error codes, or webhook validation logic.

When to use it

  • Send OTP codes for login verification
  • Automate appointment reminder SMS campaigns
  • Build IVR phone trees for customer support
  • Mask phone numbers between buyers and sellers
  • Route inbound calls to available agents

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: send an OTP to a user's phone number and verify the code they enter

AGENT
  1. 1Look up the Twilio Verify reference to get the correct endpoint and parameters
  2. 2Construct a POST request to /v2/Services/{ServiceSid}/Verifications with the phone number and channel=sms
  3. 3Send the request using the Account SID and Auth Token for basic auth
  4. 4Construct a POST request to /v2/Services/{ServiceSid}/VerificationCheck with the entered code
  5. 5Return the verification status from the response body
OUTPUT

Verification status confirming whether the user-entered code matched

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Twilio account (twilio.com)Account SID and Auth Token (or API Key and Secret)Twilio phone number or Messaging Service SIDWebhook endpoint URL accessible from the public internet