🇨🇱Información del Contribuyente Chileno

Servicio para consultar ciudadanos chilenos mediante el RUT (Registro Único Tributario).

Información Tributaria del Contribuyente Chileno

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

Este servicio permite verificar la autenticidad del documento RUT (Registro Único Tributario) chileno. Simplemente ingresa el número de RUT y recibirás una respuesta con el nombre completo, nombre, apellido y un arreglo con los nombres del titular, junto con la firma de verificación.

Este servicio puede ser utilizado por empresas o particulares para asegurar la validez del RUT chileno con diversos fines, tales como empleo, transacciones financieras o requerimientos legales.

Para utilizar este servicio en una interfaz gráfica, te invitamos a acceder a nuestro panel de cliente en Verifik.

Implementación

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
¿Required?
Description
Example

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 {
  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