> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# GetTaxSettings

# Package: tax

# Namespace: TaxSettingsService

# Method link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/extensions/tax/tax-settings/get-tax-settings.md

## Introduction

Retrieves the site's tax settings.

If the site's tax settings have never been set, default values are returned.

---

## REST API

### Schema

```
 Method: getTaxSettings
 Description: Retrieves the site's tax settings.  If the site's tax settings have never been set, default values are returned.
 URL: https://www.wixapis.com/billing/v1/tax-settings
 Method: GET
 Return type: GetTaxSettingsResponse
  - name: taxSettings | type: TaxSettings | description: Retrieved tax settings.  
     - name: taxIncludedInItemPrices | type: boolean | description: Whether tax is already included in catalog item prices.  When `true`, checkout treats catalog prices as tax-inclusive and doesn't add additional tax on top. When `false`, tax is calculated and added on top of catalog prices at checkout.  Default: `false`  
     - name: createdDate | type: string | description: Date and time the tax settings were created.  | validation: format date-time
     - name: updatedDate | type: string | description: Date and time the tax settings were last updated.  | validation: format date-time


```

### Examples

### Get Tax Settings
Retrieves the site's tax settings.

```curl
curl -X GET \
  'https://www.wixapis.com/ecom/v1/tax-settings' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: <AUTH>'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.ecom.taxSettings.getTaxSettings()
 Description: Retrieves the site's tax settings.  If the site's tax settings have never been set, default values are returned.
 Return type: PROMISE<GetTaxSettingsResponse>
  - name: taxSettings | type: TaxSettings | description: Retrieved tax settings.  
     - name: taxIncludedInItemPrices | type: boolean | description: Whether tax is already included in catalog item prices.  When `true`, checkout treats catalog prices as tax-inclusive and doesn't add additional tax on top. When `false`, tax is calculated and added on top of catalog prices at checkout.  Default: `false`  
     - name: _createdDate | type: Date | description: Date and time the tax settings were created.  
     - name: _updatedDate | type: Date | description: Date and time the tax settings were last updated.  


```

---