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β
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Must be RUT. |
documentNumber | string | Yes | Tax identifier (digits; formatting normalized by the service). |
Requestβ
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/cl/taxpayer"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "RUT", "documentNumber": "263007905"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseβ
- 200
- 404
- 409
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "documentNumber maximum length exceeded.\n"
}
Notesβ
- Prefer
v2/cl/cedulafor civil-registry RUN identity matching; usev2/cl/taxpayerwhen the RUT taxpayer record is the source of truth.