🇨🇱Chileno
Servicio para consultar ciudadanos chilenos usando el RUT (Rol Único Tributario).
Endpoint
https://api.verifik.co/v2/cl/company
Este servicio te permite obtener información sobre una empresa en Chile proporcionando su tipo y número de documento. La respuesta del servicio contendrá el nombre de la empresa, su categoría de negocio, subcategoría y actividad. Además, este servicio te proporcionará una lista de los servicios para los cuales la empresa está autorizada a trabajar.
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
RUT of the company that you want to consult, enter this parameter with periods and hyphens as established by the native documentation.
33516727409
Request
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/cl/company>',
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": {
"activities": "Contribuyente presenta Inicio de Actividades: SI",
"currentEconomicActivities": [
{
"activity": "ELABORACION DE PRODUCTOS DE PANADERIA Y PASTELERIA",
"code": "107100",
"category": "Primera",
"affectIVA": "Si",
"date": "05-09-2014"
},
{
"activity": "VENTA AL POR MENOR DE ALIMENTOS EN COMERCIOS ESPECIALIZADOS (ALMACENES",
"code": "472101",
"category": "Primera",
"affectIVA": "Si",
"date": "05-09-2014"
}
],
"documentNumber": "76409396",
"documentType": "RUT",
"fullRUT": "76409396-8",
"name": "PANADERIA R&M SPA",
"stampedDocuments": [],
"startDate": "05-09-2014"
},
"signature": {
"dateTime": "September 4, 2023 3:07 PM",
"message": "Certified by Verifik.co"
},
"id": "azbnj"
}
Last updated