---
title: "List VAT rates"
method: GET
path: "/public/v2/vat-rates/"
tags: ["VAT Rates"]
---

# List VAT rates

`GET /public/v2/vat-rates/`

Retrieve a paginated list of VAT rates available for the organization.

Use the `id` field as `vat_rate_id` when creating or updating transaction line items
(invoices, bills, journal entries, etc.) with VAT tax data.

Filter by `country_code`, `rate_type`, `tax_type`, or `is_active` to narrow results.

## Query parameters

- `country_code` VatCountries[], nullable
- `rate_type` 'STANDARD' | 'REDUCED' | 'SUPER_REDUCED' | 'PARKING' | 'ZERO' | 'EXEMPT' | 'OUT_OF_SCOPE', nullable
- `tax_type` 'INPUT_OUTPUT' | 'ZERO_RATED' | 'EXEMPT' | 'REVERSE_CHARGE' | 'OUT_OF_SCOPE', nullable
- `is_active` boolean, nullable
- `limit` integer — Number of records to return per page (capped at 100)
- `offset` integer — Number of records to skip before starting to return results

## Response `200`

OK

- PagedPublicVatRateSchemaOut
  - `items` PublicVatRateSchemaOut[], required
    - `id` integer, required
    - `country_code` string, required
    - `name` string, required
    - `rate` string, required
    - `rate_type` 'STANDARD' | 'REDUCED' | 'SUPER_REDUCED' | 'PARKING' | 'ZERO' | 'EXEMPT' | 'OUT_OF_SCOPE', required
    - `tax_type` 'INPUT_OUTPUT' | 'ZERO_RATED' | 'EXEMPT' | 'REVERSE_CHARGE' | 'OUT_OF_SCOPE', required
    - `valid_from` string, date, required
    - `valid_to` string, date, nullable, required
    - `is_active` boolean, required
    - `is_system` boolean, required
    - `description` string, nullable, required
  - `count` integer, required

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/dualentry/apis/dualentry-public-api.md) · [All operations](https://skmtc.net/dualentry/apis/dualentry-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dualentry/dualentry-public-api/versions/525a590a98f8/schema)
