Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Our API: the basics


The Twilio REST API allows you to query metadata about your account, phone numbers, calls, text messages, and recordings. You can also do some fancy things like initiate outbound calls and send text messages.


Base URL

base-url page anchor

All URLs referenced in the documentation have the following base:


_10
https://api.twilio.com/2010-04-01

The Twilio REST API is served over HTTPS. To ensure data privacy, unencrypted HTTP is not supported.


HTTP requests to the REST API are protected with HTTP Basic authentication(link takes you to an external page). To learn more about how Twilio handles authentication, please refer to our security documentation. In short, you will use your Twilio Account SID as the username and your Auth Token as the password for HTTP Basic authentication.


_10
curl -G https://api.twilio.com/2010-04-01/Accounts \
_10
-u <YOUR_ACCOUNT_SID>:<YOUR_AUTH_TOKEN>

You can find your Account SID and Auth Token on your dashboard.


Twilio Accounts have the following subresources. Click on a link to read the API documentation for accessing or modifying each resource:






Twilio's Voice API(link takes you to an external page) makes it easy to make, retrieve, control and monitor calls. Using this REST API, you can make outgoing calls, modify calls in progress, and query metadata about calls. See the Voice API Documentation for guides, REST resources, and troubleshooting tips.


Programmable Voice SIP lets you route your voice calls with global reach to any landline phone, mobile phone, browser, mobile app, or any other SIP endpoint. Check out Twilio's SIP Resources for Voice including SIP Domains, IP Access Control Lists, and Credential Lists.


Send messages with Twilio

send-messages-with-twilio page anchor

Twilio's Messaging API makes it easy to send and receive SMS and MMS messages as well as query meta-data about text messages such as delivery status, associated media, and leverage tools like Messaging Services to manage your messages globally at scale. Check out our Messaging API Documentation for guides, REST resources, and debugging tips.


Rate this page: