Skip to main content

Colombia — RUES business lookup (v2, legacy)

Validates a Colombian business in RUES using NIT via the legacy v2 API. Returns essential registration data. For a full dossier on v2, use GET /v2/co/rues/complete. For new integrations, prefer RUES business lookup (v3).

Which endpoint should I use? (v2)

GET /v2/co/rues (this API)GET /v2/co/rues/complete
PurposeQuick validation by NITComplete business information
Parameternitnit
Catalog pricingLower (e.g. 0.2 / 0.3 SmartCheck)Higher (e.g. 0.3 / 0.4 SmartCheck)

Endpoint

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

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

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

Notes

  • Legacy: prefer v3 (basic / complete) for new projects.
  • For full RUES data on v2, use GET /v2/co/rues/complete.

Request

import axios from "axios";

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

Response

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