Vat Validation
Understanding VAT Validation
What is VAT Validation?
Steps:
Provide Country and VAT Number
Enter the country code or name and the VAT number in the API request.
Send API Request
Make a GET request to the VAT validation endpoint.
Receive Validation Response
The API returns whether the VAT number is valid, along with company details.
How VAT Validation Works
1.
BE
for Belgium) or the full country name (Belgium
).2.
3.
API Endpoint
/v1/vat/validate?countryCode={{countryCode}}&vatNumber={{vatNumber}}
Example Response:
/v1/vat/validate?countryCode=BE&vatNumber=0835221567
{
"countryCode": "BE",
"countryName": "Belgium",
"vatNumber": "0835221567",
"valid": true,
"name": "BV BE³-PROJECTS",
"address": "Kasteeldreef 9 2940 Stabroek",
"internalTimestamps": {
"createdDate": "2025-02-09T16:17:42.834",
"updatedDate": "2025-02-09T16:17:42.834"
}
}
• Country Code: BE
• VAT Number: 0835221567
• Valid: ✅ Yes
• Business Name: BV BE³-PROJECTS
• Address: Kasteeldreef 9, 2940 Stabroek
TIP
Modified at 2025-02-09 16:29:19