Skip to main content
GET
/
v1
/
rates
/
{country_code}
Get VAT rates for a specific country
curl --request GET \
  --url https://api.vatly.dev/v1/rates/{country_code}
{
  "data": {
    "country_code": "NL",
    "country_name": "Netherlands",
    "currency": "EUR",
    "standard_rate": 21,
    "other_rates": [
      {
        "rate": 9,
        "type": "reduced"
      }
    ],
    "updated_at": "2026-01-01T00:00:00.000Z"
  },
  "meta": {
    "request_id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Path Parameters

country_code
string
required

ISO 3166-1 alpha-2 country code (e.g. NL, DE, GB)

Required string length: 2
Example:

"NL"

Response

VAT rates for the requested country

data
object
required
meta
object
required