About the App Plans API

The App Plans API allows you to get information about all pricing plans that a list of apps offer to users.

With the App Plans API, you can retrieve pricing information for a list of apps.

Learn more about setting up your app pricing.

Before you begin

It’s important to note the following points before starting to code:

  • You can retrieve pricing information for any app, not just your own. This means your competitors can also retrieve pricing information about your plans, if they have access to your app ID.
  • Prices for plans that are managed outside of Wix aren't returned in List App Plans By App Id.
  • List App Plans By App Id, always returns monthly prices. If your app offers yearly plans, Wix calculates and returns the average price per month. For yearly plans, you can get the full price by multiplying the returned price with 12.
  • If you want to offer more than 4 plans for your app, you need to create an external pricing page, and you can't use Wix's out-of-the-box pricing page.

Terminology

  • App Plan: Pricing plan that describes how your app charges users. You can set up multiple plans for your app, with different plans offering different tiers of functionality. For example, you can offer a free plan and 3 paid plans with an increasing number of benefits. Learn more about setting up your app pricing.
  • Wix pricing page: Wix offers your app an out-of-the-box pricing page that displays up to 4 app plans for your app to users. Learn more about setting up a pricing page.
Was this helpful?
Yes
No

App Plans Object

An appPlans object describes how you charge users for using your app. You can set up multiple plans for a single app, with different plans giving access to different tiers of functionality. For example, you can offer a free plan and 3 paid plans with an increasing number of benefits. Learn more about setting up your app pricing.

Properties
idstring
App ID, as defined in the Wix Dev Center.

plansArray <Plan>minItems 0maxItems 50
List of the app's pricing plans. Min: 0 plans Max: 50 plans
Was this helpful?
Yes
No

GetList App Plans By App Id

Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Retrieves plans for the given apps.

Also returns tax settings and currency details. Wix calculates this information based on the 2-letter country code in ISO-3166 alpha-2 format that you pass in the call's header. If you don't pass a country code in the header, Wix calculates the tax settings and currency details based on the call's IP address. Note that the tax settings and currency details may not resolve properly if you call through a VPN.

Prices for plans that are managed outside of Wix aren't returned.

Consumers must pay for yearly and multi-yearly plans of your app every month. For these plans this endpoint returns the price that the consumer must pay every month and not the total price for the entire year.

Important: The App Plans API doesn't follow any tenancy model. You don't need any permissions to call List App Plans by App ID.

Endpoint
GET
https://www.wixapis.com/apps-plans/v1/apps-plans/{appIds}

Was this helpful?
Yes
No