About the Tax Regions API

Note: This API will be deprecated on September 30, 2025. Use the identical Tax Regions API in the @wix/ecom module instead.

The Tax Regions API allows you to create and manage tax regions to apply different tax treatment based on location. Use the Tax Regions API together with the Tax Groups API and the Tax Calculation API to customize the application of tax for a business.

Before you begin

It's important to note the following before starting to code:

  • A tax region requires an appId for an available tax calculator. Call List Tax Calculators to retrieve a list of available tax calculators for a site.

Terminology

  • Tax calculator: An app that is used under the hood to calculate tax for a Wix site. The app calculates tax based on the tax group of the product and the tax region of the sale. A site assigns each tax region to the Wix manual tax calculator or an external calculator app to properly calculate tax.
  • Wix manual tax calculator: The default tax calculator installed with a Wix site. The tax rates to apply for this calculator can be manually adjusted in the Tax Settings in the Wix dashboard.
Did this help?

Setup

@wix/billing

To use the TaxRegions API, install the @wix/billing package.

Install the package

Follow the installation instructions for your development environment.

Development environmentInstallation method
Wix sites (editor or IDE)Use the package manager.
Wix sites (local IDE)Run wix install @wix/billing using the Wix CLI.
Blocks appsUse the same installation method as Wix sites.
CLI and self-hosted appsRun npm install @wix/billing or yarn add @wix/billing.
Headless sites and appsRun npm install @wix/billing or yarn add @wix/billing.

Import the package

To import the package in your code:

Copy
import { taxRegions } from "@wix/billing";
Did this help?

Sample Flow

This article presents a possible use case and sample flow that you can support. This can be a helpful jumping off point as you plan your implementation.

Start charging tax in a new region

When a business starts expanding its operations it needs to start charging tax in that new region.

To create a new tax region:

  1. Call Create Tax Region to create a new tax region to charge tax for.
  2. Call Tax Calculation Integration Service Plugin to calculate tax, or, in Tax Settings in the Wix dashboard, select the new region and set the tax rate to apply for all existing tax groups.
Did this help?