---
title: "Retrieves all tax rates configured in the Avaza account, including tax components for compound taxes."
method: GET
path: "/api/Tax"
tags: ["Tax"]
---

# Retrieves all tax rates configured in the Avaza account, including tax components for compound taxes.

`GET /api/Tax`

## Response `200`

Returns all tax rates with components.

- TaxList — Collection of tax rates configured in the account.
  - `Taxes` TaxItem[] — The list of tax rates configured in the Avaza account.
    - `TaxID` integer — Unique identifier for the tax rate.
    - `TaxCode` string — Short code identifying the tax rate.
    - `Name` string — Display name of the tax rate.
    - `CalculatedPercent` number, double — The effective tax percentage, calculated from all components for compound taxes.
    - `TaxComponents` TaxComponent[] — The individual components that make up a compound tax rate.
      - `TaxComponentID` integer — Unique identifier for the tax component.
      - `TaxIDFK` integer — The ID of the parent TaxItem this component belongs to.
      - `ComponentTaxCode` string — Short code identifying this tax component.
      - `Name` string — Display name of the tax component.
      - `Percentage` number, double — The percentage rate for this individual tax component.
      - `isCompound` boolean — Whether this component is compounded on top of the previous components (true) or applied to the original amount (false).

---

[API](https://skmtc.net/avaza/apis/avaza-api-documentation.md) · [All operations](https://skmtc.net/avaza/apis/avaza-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/avaza/avaza-api-documentation/versions/1eeadf750514/schema)
