VAT Validator

The VAT number validator is a service that helps you verify your customers' VAT numbers, and within Read more
Choose a discounted package
Quantity discounts
800 Credits / ks 
Description VAT Validator

The VAT number validator is a service that helps you verify your customers' VAT numbers, and within moments you have an answer as to whether the VAT number is valid ("OK") or invalid ("INVALID").

For developers
We have prepared some simple examples of connecting to the DataSqueezer API in common programming languages.
cURL
Python
PHP

curl -H "Content-Type: application/json" https://datasqueezer.com/nexus/createTask -d '{ "token": "__API_TOKEN__", "service": "vat", "data": "__DIC__", "serviceParams": { "fast": "__FAST__" } }'

 

NAME DESCRIPTION REQUIRED PARAMETER
__DIC__ VAT number you want to verify yes
__FAST__ 0 (default) - if the primary source is unavailable, a secondary source will be used
1 - verification only from a fast response source
no

import requests
import json

endpoint = 'https://datasqueezer.com/nexus/createTask'

data = {
'token': '__API_TOKEN__',
'service': 'vat',
'data': '__DIC__',
'serviceParams':
{
'fast': '__FAST__',
}
}

response = requests.post(endpoint, data=json.dumps(data))

 

NAME DESCRIPTION REQUIRED PARAMETER
__DIC__ VAT number you want to verify yes
__FAST__ 0 (default) - if the primary source is unavailable, a secondary source will be used
1 - verification only from a fast response source
no

$curlHandle=curl_init("https://datasqueezer.com/nexus/createTask");

$data=[
'token'=>'__API_TOKEN__',
'service'=>'vat',
'data'=>'__DIC__',
 'serviceParams'=>[
  'fast': '__FAST__'
 ],
];

curl_setopt($curlHandle, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curlHandle, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curlHandle, CURLOPT_FOLLOWLOCATION, true);

$response=curl_exec($curlHandle);
$error_msg=curl_error($curlHandle);
curl_close($curlHandle);

 

NAME DESCRIPTION REQUIRED PARAMETER
__DIC__ VAT number you want to verify yes
__FAST__ 0 (default) - if the primary source is unavailable, a secondary source will be used
1 - verification only from a fast response source
no

chat
Or write to us at
Login
Don't have an account yet?Sign up.
Tracking product
Please fill in all conditions which has to be reached and an email address where you want to get a notification
Credits
The use of DataSqueezer services is tied to a user account, which needs to be set up in advance. Do you wish to create a registration or sign in?
Sign Up