Skip to main content

Colombia — COPNIA professional licenses by document

Verifik queries COPNIA (Consejo Profesional Nacional de Ingeniería) using documentType and documentNumber. The live source is the COPNIA Certificate of Good Standing portal. Use this endpoint for credentialing, hiring, and compliance checks on Colombian engineering professionals.

What this API returns

  • Identity fields: documentType, documentNumber, firstName, lastName, fullName, arrayName
  • licenses[] — professional registrations found for that person
  • Each license may include licenseNumber, licenseStatus, licenseType, profession, resolutionDate, resolutionNumber
  • A signed Verifik response

API reference

Endpoint

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

Send documentType and documentNumber as query parameters. The handler returns the person plus a licenses array. Detail fields (licenseStatus, licenseType, resolutionDate, resolutionNumber) are hydrated for at most 10 licenses; additional rows keep list data (licenseNumber and profession) only.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescriptionExample
documentTypestringYesOne of CC, CE, PA, PEP, PE, PPT, TI, NIT.CC
documentNumberstringYesDocument number without spaces or punctuation (minimum 5 characters).80176161

Request

import axios from "axios";

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

Response

{
"data": {
"arrayName": ["HENRY", "ANDRES", "CASTANEDA", "ACOSTA"],
"documentNumber": "80176161",
"documentType": "CC",
"firstName": "HENRY ANDRES",
"fullName": "HENRY ANDRES CASTANEDA ACOSTA",
"lastName": "CASTANEDA ACOSTA",
"licenses": [
{
"licenseNumber": "091132-0839078 CNDC",
"licenseStatus": "VIGENTE",
"licenseType": "MATRICULA PROFESIONAL",
"profession": "INGENIERIA DE SOFTWARE",
"resolutionDate": "2026-07-27",
"resolutionNumber": "RN2026NALA032094"
}
]
},
"signature": {
"dateTime": "September 15, 2026 9:00 PM",
"message": "Certified by Verifik.co"
},
"id": "ABCDE"
}

Features

  • Document types accepted by validation: CC, CE, PA, PEP, PE, PPT, TI, NIT
  • GET query parameters only
  • Sandbox returns a fixed COPNIA-shaped payload for known test documents
  • Responses are signed and billed as an apiRequest hybrid feature

Use cases

  • Hiring and contractor credentialing for engineering roles
  • Compliance checks before awarding public or private contracts
  • Workforce onboarding when a COPNIA matrícula is required

Notes

  • Sandbox document example: CC / 80176161. The sandbox license number is 091132-0839078 CNDC.
  • At most 10 licenses are detail-hydrated. Extra rows keep licenseNumber and profession only. A failed detail fetch is omitted silently (the list row remains).
  • A source or session failure can return 409 with timeout_data_source.
  • Treat responses as sensitive personal data and follow Colombian habeas data rules.
  • To look up one matrícula by registration number, use COPNIA by license.