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...
https://api.verifik.co/v3/co/rues-completeRetrieves 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.
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
| Name | Type | Required | Description |
|---|---|---|---|
category | string | Yes | One of: "RM", "PROP", "RUNEOL", "RNT", "ESAL", "RESAL", "JUEGOS", "EXTRANJERAS". |
documentNumber | string | Yes | Legal business ID (e.g., 1121329661). |
documentType | string | Yes | Company document type. For Colombia use NIT. |
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);import os, requests
url = "https://api.verifik.co/v3/co/rues-complete"
headers = {
"Accept": "application/json",
"Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"
}
params = {"category": "RM", "documentNumber": "1121329661", "documentType": "NIT"}
r = requests.get(url, headers=headers, params=params)
print(r.json())For complete and updated documentation, visit: /business-validation/rues-complete-v3