🇨🇴Colombian Business Information - RUES

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

Create a new user

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

The Colombian Business Information service - RUES (Registro Único Empresarial y Social) offers detailed information about businesses registered in Colombia. By using this service, you can obtain essential details about a specific business, including its name, registration number, document type, identification details, location (municipality), registration category, and its status in the Registro Mercantil (RM, Mercantile Register).

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Valid parameter: NIT

NIT

documentNumber

String

True

NIT of the company, without spaces, points and without verification number.

901331380

NameTypeDescription

name

string

Name of the user

age

number

Age of the user

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/rues>',
  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": {
    "businessName": "VERIFIK SAS",
    "documentNumber": "901331380",
    "documentType": "NIT",
    "identification": "NIT 901331380 - 2",
    "municipality": "BOGOTA, D.C. / BOGOTA",
    "registration_category": "SOCIEDAD ó PERSONA JURIDICA PRINCIPAL ó ESAL",
    "statusRM": "CANCELADA"
  },
  "signature": {
    "dateTime": "September 21, 2023 9:09 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "nss88"
}

Last updated