---
title: "Search VAT Rates"
method: GET
path: "/business/v2/entities/tax-rate"
tags: ["VAT Rates"]
---

# Search VAT Rates

`GET /business/v2/entities/tax-rate`

Endpoint to find `VatRate` using filtering parameters.

## Query parameters

- `text` string — A simple text to search in the Vat rate data (name, code).
- `enabled` boolean — It determines if Vat rate is enabled.
- `p` integer — It indicates the specific page to display (the counter starts from zero).
- `s` integer — It indicates the number of items per page.
- `d` 'ASC' | 'DESC' — It indicates how the pages are ordered.
- `props` string[] — It indicates the sorting direction applied to the above parameters. To apply a sorting on multiple parameters, set as many times the `props` parameter in the request.

## Response `200`

The result is an array containing `VATRates`.

- VatRates
  - `total` integer — It represents the total number of available items in the list.
  - `pages` integer — It represents the total number of available pages.
  - `page_size` integer — It represents the number of items per page.
  - `current_page` integer — It indicates the current page (the counter starts from zero).
  - `results_size` integer — It indicates the size of the array results.
  - `results` VatRate[]
    - `id` string — The `VATRate` ID.
    - `code` string — The code of the `VATRate`.
    - `name` string — The name of the `VATRate`
    - `description` string — A custom description of the `VATRate`.
    - `percentage` number, double — The percentage value of the `VATRate`
    - `enabled` boolean — The `VATRate` is visible in the transaction detail.
    - `integration` string — The `VATRate`'s corresponding integration.
    - `creation_time` string — The date and time when the `VATRate` was created (sortable: yes).
    - `last_update_time` string — The date and time when the `VATRate` was last updated (sortable: yes).

## Other responses

- `400` — Your request has missing arguments or is malformed.

---

[API](https://skmtc.net/soldo/apis/soldo-business-api-v2-0.md) · [All operations](https://skmtc.net/soldo/apis/soldo-business-api-v2-0/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/soldo/soldo-business-api-v2-0/revisions/7be21448a2b3/schema)
