--- title: 'Twilio' description: 'Send SMS, make voice calls, and manage phone numbers via Twilio.' --- # Twilio Send SMS, make voice calls, and manage phone numbers via Twilio. | Detail | Value | |---|---| | Category | Communication | | Base URL | `https://api.twilio.com` | | Authentication | Bearer Token | | Endpoints | 5 | | Connector key | `twilio` | ## Using Twilio in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Twilio** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [POST /Accounts/{AccountSid}/Messages.json](./post_accounts_accountsid_messages_json_messaging_sendsms) | Send an SMS message | | [GET /Accounts/{AccountSid}/Messages.json](./get_accounts_accountsid_messages_json_messaging_listmessages) | List messages | | [GET /Accounts/{AccountSid}/Messages/{MessageSid}.json](./get_accounts_accountsid_messages_messagesid_json_messaging_getmessage) | Fetch a message | | [POST /Accounts/{AccountSid}/Calls.json](./post_accounts_accountsid_calls_json_messaging_makecall) | Make a phone call | | [GET /Accounts/{AccountSid}/Calls.json](./get_accounts_accountsid_calls_json_messaging_listcalls) | List calls | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.