About this endpoint
What it does
Looks up company information for a VAT number and returns the result in a data object. The request body must include the VAT number, including the 2-letter country code prefix.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| vat | String | Yes | VAT number including 2-letter country code prefix. |
Response
Returns a JSON object with a data object field. The data object contains company details: name as a string, valid as a boolean, address as a string, vat_number as a string, and country_code as a string.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| data | Object | No | Company information returned for the VAT lookup. |
| data.name | String | No | Company name. |
| data.valid | Boolean | No | Whether the VAT number is valid. |
| data.address | String | No | Company address. |
| data.vat_number | String | No | VAT number returned by the lookup. |
| data.country_code | String | No | Country code associated with the VAT number. |