DocsAPI ReferenceVat Rate/bff/vat-rate/list
getVat RateAdmin BFF

/bff/vat-rate/list

Returns the time-bounded VAT rate master table. Filterable by country and "valid on this date". Use without validOn for the admin management screen, with validOn for invoice issue dropdowns.

VAT rategetBffVat-rateList

Parameters

2 query

2 total
Query · 2
countryCodestring

ISO 3166-1 alpha-2 country code filter (e.g. "CZ").

validOnstring

ISO date (YYYY-MM-DD). When provided, only rates valid on that day are returned — use this when populating a "VAT rate" dropdown for a specific invoice issue date.

Request

GET /bff/vat-rate/list

get
curl -X GET "https://api.bizkithub.com/bff/vat-rate/list?countryCode=CZ&validOn=2026-05-04" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

JSON payload

{
  "items": [
    {
      "id": 0,
      "code": "example_code",
      "countryCode": "example_countryCode",
      "ratePercent": "example_ratePercent",
      "validFrom": "example_validFrom",
      "isDefault": false,
      "isReverseCharge": false,
      "displayOrder": 0
    }
  ]
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key