Skip to main content

⚠️ This page has been moved

This URL belonged to the old GitBook documentation and is now in a new location.

New URL: /business-validation/rues-complete-v3

You will be automatically redirected in 60 seconds...

Go to New Documentation

RUES Business Validation

Endpoint

https://api.verifik.co/v3/co/rues-complete

Retrieves complete business information from Colombia's RUES registry. This service provides comprehensive data about Colombian businesses including commercial registry details, legal representatives, organization type, enrollment information, and more.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Params

NameTypeRequiredDescription
categorystringYesOne of: "RM", "PROP", "RUNEOL", "RNT", "ESAL", "RESAL", "JUEGOS", "EXTRANJERAS".
documentNumberstringYesLegal business ID (e.g., 1121329661).
documentTypestringYesCompany document type. For Colombia use NIT.

Request

import axios from "axios";

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

For complete and updated documentation, visit: /business-validation/rues-complete-v3