Skip to main content

Colombia — RUES complete lookup (v2, legacy)

Retrieves complete Colombian business information from the RUES registry by NIT (legacy v2 API). Includes more detail than GET /v2/co/rues. For new integrations, use RUES Complete (v3).

Which endpoint should I use? (v2)

GET /v2/co/ruesGET /v2/co/rues/complete (this API)
PurposeBasic summaryFull dossier (representatives, activities, etc.)
Parameternitnit
Catalog pricingLowerHigher because more official data is aggregated

Endpoint

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

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
nitstringYesCompany tax ID (NIT), without spaces or punctuation.

Notes

  • Pricing: costs more than GET /v2/co/rues due to additional RUES detail in one response.
  • Legacy: prefer v3 complete for new integrations.

Request

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/rues/complete", {
params: { nit: "1121329661" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Response

{
"data": {},
"signature": { "dateTime": "…", "message": "Certified by Verifik.co" }
}