Skip to main content
POST
/
public
/
common
/
vat
/
validate
Validate Vat Number
curl --request POST \
  --url https://apigw.ipxo.com/ecommerce/public/common/vat/validate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "vat_number": "debitis"
}
'
{
  "data": {
    "status": "valid",
    "validated_at": "2025-01-01T00:00:00.0000000+00:00",
    "company_name": "Company Name",
    "country_code": "DE"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
vat_number
string
required
Example:

"debitis"

Response

200 - application/json
data
object