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/rues | GET /v2/co/rues/complete (this API) | |
|---|---|---|
| Purpose | Basic summary | Full dossier (representatives, activities, etc.) |
| Parameter | nit | nit |
| Catalog pricing | Lower | Higher because more official data is aggregated |
Endpoint
GET https://api.verifik.co/v2/co/rues/complete
Headers
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
nit | string | Yes | Company tax ID (NIT), without spaces or punctuation. |
Notes
- Pricing: costs more than
GET /v2/co/ruesdue to additional RUES detail in one response. - Legacy: prefer v3 complete for new integrations.
Request
- JavaScript
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
- 200
{
"data": {},
"signature": { "dateTime": "…", "message": "Certified by Verifik.co" }
}