Skip to main content
GET
/
public
/
v2
/
vat-rates
List VAT rates
curl --request GET \
  --url https://api.dualentry.com/public/v2/vat-rates/ \
  --header 'X-API-KEY: <api-key>'
{
  "items": [
    {
      "id": 123,
      "country_code": "<string>",
      "name": "<string>",
      "rate": "<string>",
      "valid_from": "2023-12-25",
      "valid_to": "2023-12-25",
      "is_active": true,
      "is_system": true,
      "description": "<string>"
    }
  ],
  "count": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Query Parameters

country_code
enum<string>[] | null

Countries with a VAT system. Used to restrict API inputs to valid VAT jurisdictions.

Available options:
AE,
GB,
TH,
TZ,
MX,
FR,
DE,
ES,
IT,
NL,
BE,
IE,
PT,
SE,
AT,
PL,
DK,
FI,
GR,
CZ,
RO,
HU,
BG,
HR,
SK,
SI,
LT,
LV,
EE,
CY,
MT,
LU
rate_type
enum<string> | null
Available options:
STANDARD,
REDUCED,
SUPER_REDUCED,
PARKING,
ZERO,
EXEMPT
tax_type
enum<string> | null
Available options:
INPUT_OUTPUT,
ZERO_RATED,
EXEMPT,
REVERSE_CHARGE,
OUT_OF_SCOPE
is_active
boolean | null
limit
integer
default:100

Number of records to return per page (capped at 100)

Required range: x >= 1
offset
integer
default:0

Number of records to skip before starting to return results

Required range: x >= 0

Response

OK

items
PublicVatRateSchemaOut · object[]
required
count
integer
required
Last modified on May 28, 2026