🇨🇴Colombian Company DIAN Verification

Service to verify if a company is duly registered with the DIAN (National Tax and Customs Directorate).

Colombian Company DIAN Verification

GET - https://api.verifik.co/v2/co/company/dian

The Colombian Company DIAN Verification service allows you to confirm the registration status and details of companies registered with DIAN (Dirección de Impuestos y Aduanas Nacionales). By providing the NIT (Número de Identificación Tributaria) and the document type, you can retrieve the company's registration date, current status, and name or business name. This service is useful for verifying the tax registration and legitimacy of businesses in Colombia.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequired?DescriptionExample

documentType

String

True

Valid parameter: NIT

NIT

documentNumber

String

True

NIT of the company, without spaces, points and without verification number.

901331380

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/company/dian>',
  params: {documentType: 'NIT', documentNumber: '901331380'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
  "data": {
    "date": "2022-07-15T21:47:00Z",
    "descripcion": "Los datos de la persona estan activos, es decir tiene vigentes sus responsabilidades ",
    "estado": "REGISTRO ACTIVO",
    "nombreRazon": "VERIFIK SAS",
    "nit": "901331380"
  },
  "signature": {
    "dateTime": "July 15, 2022 4:48 PM",
    "message": "Certified by Verifik.co"
  }
}

Last updated