REST APIs

Wix REST APIs allow your app to access Wix users' site data, extend Wix business solutions, and customize interactions with site visitors.

REST APIs can be used in any programming language. They use standard HTTPS and return JSON-encoded responses.

Advantages of using REST APIs

The advantage of using REST APIs over other Wix API technologies is that it gives you the flexibility to work with any programming language. It's a good choice for when you want to:

  • Host your own app and prefer to code in a language other than JavaScript.
  • Create an app that integrates with an existing external service whose codebase is in a language other than JavaScript.

Authentication and permissions

The simplest way to authenticate your app's REST API calls is by implementing Wix's OAuth solution.

To use Wix APIs, site owners must grant you explicit permission to access their data. They do this when they install your app on their site. Therefore, you must provide a list of permissions you need from the site owner in the Permissions page in the Wix Dev Center. You can see which permissions each endpoint requires in its Permissions Scopes section in the REST API reference.

Read more about permissions.

Events

You can implement webhooks to listen for and handle events over REST. Webhooks listen to events in real time and notify you whenever something happens in your app or on a site that your app is installed on.

Service Plugins (formerly SPIs)

Wix offers a range of service plugins that you can implement over REST, allowing you to inject custom logic into Wix services. Learn more about Service Plugins.

Was this helpful?
Yes
No