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 : bg

tin : 49004028000

šŸ“˜

Post: https://api.prembly.com/identitypass/verification/global/vat-lookup-check

Request Header

keydescription
x-api-keyyour api-key
app-idyour app-id

Request Body

keydescription
countrycountry code
tinthe tax identification number

Sample Response

{
    "status": true,
    "detail": "Verification Successful",
    "response_code": "00",
    "data": {
        "country_name": "Bulgaria",
        "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"
}