Abstract API · Schema

VATValidationResponse

AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Properties

Name Type Description
vat_number string The VAT number validated
valid boolean Whether the VAT number is valid
company object
country object
View JSON Schema on GitHub

JSON Schema

abstract-api-vatvalidationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VATValidationResponse",
  "title": "VATValidationResponse",
  "type": "object",
  "properties": {
    "vat_number": {
      "type": "string",
      "description": "The VAT number validated",
      "example": "GB123456789"
    },
    "valid": {
      "type": "boolean",
      "description": "Whether the VAT number is valid",
      "example": true
    },
    "company": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "Company name associated with the VAT number",
          "example": "Example Ltd"
        },
        "address": {
          "type": "string",
          "description": "Company address",
          "example": "1 Example Street, London, UK"
        }
      }
    },
    "country": {
      "type": "object",
      "properties": {
        "code": {
          "type": "string",
          "description": "Country code",
          "example": "GB"
        },
        "name": {
          "type": "string",
          "description": "Country name",
          "example": "United Kingdom"
        }
      }
    }
  }
}