🇨🇱Chilean

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

Company Information

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

This service allows you to retrieve information about a company in Chile by providing its document type and number. The service response will contain the name of the company, its business category, subcategory, and activity. Additionally, this service will provide you with a list of services for which the company is authorized to work.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequired?DescriptionExample

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