Colombia - Verificación Facturador Legal
Endpoint
https://api.verifik.co/v2/co/company/dian/invoicer
Valida si una empresa tiene un facturador legal registrado en DIAN.
Headers
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parámetros
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Tipo de documento. Parámetro permitido: NIT. |
documentNumber | string | Yes | NIT (con o sin dígito de verificación). |
Solicitud
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/company/dian/invoicer", {
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/invoicer"
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())
Respuesta
- 200
- 404
- 409
- 500
{
"data": {
"documentNumber": "901708460",
"documentType": "NIT",
"email": "info@sayshannon.com",
"nit": "901708460"
},
"signature": {
"dateTime": "October 10, 2025 5:11 PM",
"message": "Certified by Verifik.co"
},
"id": "JS4GP"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "documentType must be one of: [NIT]"
}
{
"code": "MissingParameter",
"message": "missing documentNumber\n"
}
{
"code": "MissingParameter",
"message": "missing documentType\n"
}
{
"code": "InternalServerError",
"message": "Server error."
}
Notas
- Este endpoint solo valida la presencia del registro de facturador; usa Verificación DIAN para obligaciones y estado.