About this endpoint
What it does
Looks up company information for a VAT number and returns a JSON object containing the result under data. The request sends a VAT number in the body, and the response includes the company details exposed by the output schema.
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 information fields such as name, valid, address, vat_number, and country_code.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| data | Object | No | Company information object. |
| data.name | String | No | Company name. |
| data.valid | Boolean | No | Whether the VAT lookup is valid. |
| data.address | String | No | Company address. |
| data.vat_number | String | No | VAT number. |
| data.country_code | String | No | Country code associated with the VAT number. |