Skip to contentSkip to navigationSkip to topbar
Page tools
Useful for sharing or LLM

On this page
Looking for more inspiration?Visit the

The Sync REST API


The Sync REST API allows you to control your Sync applications from backend servers in much the same way you can from the client. You can create, update and manage your documents, lists and maps using these resources.


API Base URL

api-base-url page anchor

All URLs in the reference documentation use the following base URL:

https://sync.twilio.com/v1

All requests to the Sync REST API are served over HTTPS. Unencrypted HTTP is not supported.


To authenticate requests to the Twilio APIs, Twilio supports HTTP Basic authentication(link takes you to an external page). Use your API key SID as the username and your API key secret as the password. You can create an API key in the Twilio Console or using the API.

Learn more about Twilio API authentication.

1
curl -G https://sync.twilio.com/v1/Services \
2
-u $TWILIO_API_KEY:$TWILIO_API_KEY_SECRET