VAT Number Check
This endpoint verifies the validity of a company's VAT registration number. This process is commonly used to confirm that a business is properly registered for VAT within its country or region.
It returns whether the tax ID is valid, as well as name and address details for the ID owner.
Test data:
country : pl
tin : 49004028000
Post: https://api.prembly.com/identitypass/verification/global/vat-lookup-check
Request Header
key | description |
---|---|
x-api-key | your api-key |
app-id | your app-id |
Request Body
key | description |
---|---|
country | country code |
tin | the tax identification number |
Sample Response
{
"status": true,
"detail": "Verification Successful",
"response_code": "00",
"data": {
"country_name": "Poland",
"tin_compact": "49004028000",
"tin_standard": "49 004 028 000",
"format_name": "Business Number",
"is_valid": true,
"message": null,
"lookup_data": {
"name": "HP GROUP LIMITED",
"address": "30 VIC"
}
},
"verification": {
"status": "VERIFIED",
"reference": "99fc86-1e7c-4cd0-bbd7-e1965ba47f"
},
"widget_info": {},
"session": {},
"endpoint_name": "VatLookup"
}
Updated about 1 month ago