How to make a request
You can send requests to the API using either the GET
or POST
method, but we recommend using POST
for greater security and flexibility.
Make sure to always include the API key in the x-api-key
header. See the Authentication section for more details.
Prepare your POST
call:
POST https://verifyvat.com/api/:tax-type/:tax-idContent-Type: application/jsonx-api-key: {api_key}
You can find a list of supported tax types in the Parameters section.
If your application does not support POST
queries, you can still use GET
, but you will need to pass the parameters as a query string. Some advanced features may not be available in this mode.
POST https://verifyvat.com/api/:tax-type/:tax-id?details=truex-api-key: {api_key}