check_vat_number
Validate EU VAT numbers using the official VIES service to confirm registration status and retrieve company information for business verification.
Instructions
Validate EU VAT number using VIES service / Overiť IČ DPH v EÚ pomocou služby VIES
Input Schema
Name | Required | Description | Default |
---|---|---|---|
countryCode | Yes | EU member state code (e.g., SK, CZ, DE) / Kód členského štátu EÚ | |
vatNumber | Yes | VAT number without country prefix / IČ DPH bez predpony krajiny |
Input Schema (JSON Schema)
{
"properties": {
"countryCode": {
"description": "EU member state code (e.g., SK, CZ, DE) / Kód členského štátu EÚ",
"enum": [
"AT",
"BE",
"BG",
"CY",
"CZ",
"DE",
"DK",
"EE",
"EL",
"ES",
"FI",
"FR",
"HR",
"HU",
"IE",
"IT",
"LT",
"LU",
"LV",
"MT",
"NL",
"PL",
"PT",
"RO",
"SE",
"SI",
"SK"
],
"type": "string"
},
"vatNumber": {
"description": "VAT number without country prefix / IČ DPH bez predpony krajiny",
"maxLength": 20,
"minLength": 1,
"type": "string"
}
},
"required": [
"countryCode",
"vatNumber"
],
"type": "object"
}