This URL belonged to the old GitBook documentation and is now in a new location.
New URL: /business-validation/colombia-dian-verification
You will be automatically redirected in 60 seconds...
https://api.verifik.co/v2/co/company/dianValidates a company's DIAN (Colombia tax authority) status. This service allows you to verify if a Colombian company is active and has valid tax responsibilities registered with the DIAN.
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Document type. Allowed parameter: NIT. |
documentNumber | string | Yes | NIT (with or without verification digit). |
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/company/dian", {
params: { documentType: "NIT", documentNumber: "901708460" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);import os, requests
url = "https://api.verifik.co/v2/co/company/dian"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "NIT", "documentNumber": "901708460"}
r = requests.get(url, headers=headers, params=params)
print(r.json()){
"data": {
"date": "2025-10-10T16:49:00Z",
"descripcion": "Los datos de la persona estan activos, es decir tiene vigentes sus responsabilidades ",
"estado": "REGISTRO ACTIVO",
"nombreRazon": "SAY SHANNON COLOMBIA SAS",
"nit": "901708460"
},
"signature": {
"dateTime": "October 10, 2025 4:49 PM",
"message": "Certified by Verifik.co"
},
"id": "5RCBO"
}{
"code": "NotFound",
"message": "Record not found."
}For complete and updated documentation, visit: /business-validation/colombia-dian-verification