API Docs
API Docs
  1. Vat Validation
  • Getting Started
    • Introduction to Sales Tax Calculation
    • Step By Step - Creating your first transaction
    • Step By Step - Creating VAT / Global Tax Transaction
  • Endpoints
    • Authentication
      • Authentication - Getting Started
      • Create JWT
    • Customers
      • Get to Know
      • Get Customer
      • Get All Customers
      • Upsert Customer
      • Update Customer
    • Exemptions
      • Get to Know
      • Get All Exemptions
      • Post Exemption
      • Update Exemption
      • Patch Exemption
    • Transactions
      • Get to Know
      • The Importance of Shipping Address
      • How to Use Credit Memos
      • Get Transaction (thin)
      • Get Transaction
      • Upsert Transaction
      • Delete Transaction
      • Get All Transactions (thin)
      • Get All Transactions
      • Upsert VAT / GT Transactio
    • Address Validation
      • Address Validation Intro
      • Validate Address
    • Sales Tax Rates
      • Get Sales Tax Rates
    • Vat Validation
      • Validate Vat
        GET
  • Special Features
    • Global Tax Rate
    • Partial Address
    • Discounts
    • Inclusive Tax
    • Vat Validation
    • Post exemptions from CSV
      POST
  1. Vat Validation

Validate Vat

GET
/v1/vat/validate

Request

Query Params
countryCode
string 
optional
The country code of the wanted country
Example:
BE
vatNumber
string 
optional
The vat registration number
Example:
0835221567

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sandbox.complyt.io/v1/vat/validate?countryCode=BE&vatNumber=0835221567'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
  "countryCode": "BE",
  "countryName": "Belgium",
  "vatNumber": "0835221567",
  "valid": true,
  "name": "BV BE³-PROJECTS",
  "address": "Kasteeldreef 9 2940 Stabroek",
  "internalTimestamps": {
    "createdDate": "2025-02-09T16:17:42.834300",
    "updatedDate": "2025-02-09T16:17:42.834300"
  }
}
Previous
Get Sales Tax Rates
Next
Global Tax Rate
Built with