🇨🇴Complete Business Registry - RUES

Service to query Colombian companies against the RUES (Single Business and Social Registry) using the NIT (Tax Identification Number).

Complete Business Registry - RUES

GET - https://api.verifik.co/v2/co/rues/complete

The Business Information Service allows you to retrieve detailed information about a business registered in Colombia using its NIT (Número de Identificación Tributaria). This service provides comprehensive details including commercial registry information, legal representatives, and the economic activities associated with the business.

It's a valuable tool for verifying business credentials, understanding business operations, and conducting due diligence.

Implementation

Headers

Body

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/rues/complete>',
  params: {documentNumber: '901331380', documentType: 'NIT'},
  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": {
        "commercialRegistry": {
            "NIT": "860002964-4",
            "acronym": "",
            "businessName": "BANCO DE BOGOTA",
            "chamberCommerce": "BOGOTA",
            "commercialAddress": "CL 36 # 7 47 P 15",
            "companyLocation": "",
            "companyType": "SOCIEDAD ANONIMA",
            "email": "rjudicial@bancodebogota.com.co",
            "enrollmentCategory": "8/27/2024 1:30:04 PM",
            "enrollmentDate": "19841012",
            "idRm": "40000221830",
            "lastRenewedYear": "2024",
            "lastUpdatedDate": "8/27/2024 1:30:04 PM",
            "legalRepresentatives": {
                "faculty": "Información no disponible",
                "legalRepresentatives": [
                    [
                        {
                            "role": "Representante Legal",
                            "name": "John Freddy Vega Forero",
                            "documentType": "CC",
                            "documentNumber": "1019005801"
                        }
                    ]
                ]
            },
            "organizationType": "SOCIEDAD ó PERSONA JURIDICA PRINCIPAL ó ESAL",
            "reasonForCancellation": "SOCIEDAD COMERCIAL",
            "registrationNumber": "221830",
            "registrationStatus": "ACTIVA",
            "renewalDate": "20240322"
        },
        "documentNumber": "860002964",
        "documentType": "NIT",
        "economicActivities": [
            {
                "name": "ciiu_act_econ_pri",
                "code": "6412",
                "description": "Bancos comerciales"
            },
            {
                "name": "ciiu_act_econ_sec",
                "code": "",
                "description": ""
            },
            {
                "name": "ciiu3",
                "code": "",
                "description": ""
            },
            {
                "name": "ciiu4",
                "code": "",
                "description": ""
            }
        ]
    },
    "signature": {
        "dateTime": "August 27, 2024 9:44 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "DQHPI"
}

Last updated