v1
latestOpenAPI 3.0.02026-07-2436163302.7 KBLookup V1
Request a validation
This endpoint allows you to request a validation of the Tax Identification Number. In order to do so, our system needs a country of the client (ISO code) and a tax identification number of the client.
post/lookup/v1/validations
Request body
Example request
{
"country_iso": "ee",
"tin": "100070008",
"check_tin_online": true,
"fuzzy_matching": {
"taxpayer": {
"name": "expected taxpayer name",
"address": "expected taxpayer address"
}
}
}Response
The validation results were fetched from cache and you can read them immediately. This response will also be returned if you provide a TIN number that has invalid format or checksum digit(s), the response will provide details whether the format or/and checksum digit(s) were invalid.
Example response
{
"validation": {
"tin": "100070008",
"country_iso": "cl",
"error_code": 1,
"company_name": "ACME",
"taxpayer": {
"registration_date": "2017-07-20",
"deregistration_date": "2017-07-20",
"address": "Tower A DLF Tower, 4th Floor, DLF INFINTY TOWER, Sector 25A, Gurugram, Haryana, 122002"
},
"extra_fields": {
"brazil_fantasy_name": "BAR E LANCHES 111",
"canada_federal_state": "Federal",
"colombia_check_digit": "9",
"colombia_large_taxpayer": "yes",
"colombia_tin_without_check_digit": "123456789",
"egypt_uin_expiry_date": "2010-10-10",
"germany_federal_state": "Berlin",
"hungary_full_tax_identification_number": "13353298-2-44",
"india_pan_aadhaar_linked": "not_applicable",
"india_pan_specified_person": "no",
"india_trade_name": "ACME TRADE",
"japan_qualified_invoice_issuer": "yes",
"mexico_zip_code_used_for_validation": "12345",
"usa_irs_response": "TIN and Name combination does not match IRS records."
}
}
}