Skip to main content

Chile β€” Taxpayer (RUT) lookup

Use this endpoint when you need taxpayer-oriented identity data for a Chilean RUT (not the civil-registry cedula flow). It complements Identity verification in Chile (v2/cl/cedula), which is tuned to RUN/civil lookup.

API reference​

Endpoint​

https://api.verifik.co/v2/cl/taxpayer

Returns name fields and identifiers aligned with tax registry usageβ€”ideal for KYB, supplier onboarding, and invoice validation where the RUT must match registered taxpayer data.

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
documentTypestringYesMust be RUT.
documentNumberstringYesTax identifier (digits; formatting normalized by the service).

Request​

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/cl/taxpayer", {
params: { documentType: "RUT", documentNumber: "263007905" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);

Response​

{
"data": {
"arrayName": ["RICHARD", "DANIEL", "BARBERA", "MARICHAL"],
"documentNumber": "263007905",
"documentType": "RUT",
"firstName": "RICHARD DANIEL",
"fullName": "RICHARD DANIEL BARBERA MARICHAL",
"lastName": "BARBERA MARICHAL"
},
"signature": {
"dateTime": "April 9, 2026 3:02 PM",
"message": "Certified by Verifik.co"
},
"id": "S40CG"
}

Notes​

  • Prefer v2/cl/cedula for civil-registry RUN identity matching; use v2/cl/taxpayer when the RUT taxpayer record is the source of truth.