🇨🇱Chilean taxpayer information

Service to query Chilean citizens using the RUT (Unique Taxpayer Registry).

Chilean taxpayer information

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

This service allows you to verify the authenticity of the Chilean RUT (Unique Taxpayer Registry) document. Simply enter the RUT number, and you will receive a response with the full name, first name, last name, and name array of the cardholder, along with the verification signature.

This service can be used by companies or individuals to ensure the validity of the Chilean RUT for various purposes, such as employment, financial transactions, or legal requirements.

To use this service in a graphical interface, we invite you to access our client panel at Verifik.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameType¿Required?DescriptionExample

documentType

String

True

Document type. Allowed parameter: RUT.

RUT

documentNumber

String

True

Document number of the person to consult without spaces.

212957739

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/cl/taxpayer>',
  params: {documentType: 'RUT', documentNumber: '212957739'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
    "data": {
        "arrayName": [
            "MATEO",
            "VERIFIK"
        ],
        "documentNumber": "123456789",
        "documentType": "RUT",
        "firstName": "MATEO",
        "fullName": "MATEO VERIFIK",
        "lastName": "VERIFIK"
    },
    "signature": {
        "dateTime": "April 11, 2024 7:08 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "X5GYV"
}

Last updated