Connect to Twilio to send SMS/MMS, manage voice calls, and query phone numbers and account information.
| Action | Description | Parameters | Returns |
|---|---|---|---|
check_verification | Check a verification code via Twilio Verify | service_sid, to, code | TwilioVerificationCheck |
create_conversation ⚠ | Create a new Twilio conversation | friendly_name | TwilioConversation |
create_verify_service ⚠ | Create a Twilio Verify service | friendly_name | TwilioVerifyService |
delete_message ⚠ | Delete a message from your Twilio account | message_sid | bool |
delete_recording ⚠ | Delete a call recording by SID | sid | bool |
get_account | Retrieve your Twilio account details | — | TwilioAccount |
get_account_usage | Get account usage records for the current billing period | — | list |
get_call | Retrieve a single Twilio call by SID | call_sid | TwilioCall |
get_message | Retrieve a single Twilio message by SID | message_sid | TwilioMessage |
list_calls | List voice calls from your Twilio account | [to, from_, limit] | PaginatedList[TwilioCall] |
list_conversations | List conversations from your Twilio account | [limit] | list |
list_messages | List SMS/MMS messages from your Twilio account | [to, from_, limit] | PaginatedList[TwilioMessage] |
list_phone_numbers | List incoming phone numbers on your Twilio account | — | list |
list_recordings | List call recordings from your Twilio account | [limit] | list |
lookup_phone | Look up information about a phone number | phone_number [fields] | TwilioLookupResult |
make_call ⚠ | Initiate a voice call via Twilio | to, from_, url | TwilioCall |
send_mms ⚠ | Send an MMS message with media via Twilio | to, from_, body, media_url | TwilioMessage |
send_sms ⚠ | Send an SMS or MMS message via Twilio | to, from_, body | TwilioMessage |
send_verification ⚠ | Send a verification token via Twilio Verify | service_sid, to [channel] | TwilioVerification |
update_message | Update or redact a Twilio message | message_sid [body] | TwilioMessage |
Full schema explorer, code generation, and live API testing