🇨🇴Driver's License

Service to check driving licenses using the identification document.

Colombian Driver's License Verification

GET - https://api.verifik.co/v2/co/runt/conductor

The Driver License Information service provides comprehensive details about driver's license holders in Colombia. By using this service, you can access information such as the document type and number, full name, expiration date, status, and category of the license. It also allows you to verify whether the license is active, suspended, or canceled, and includes details about any transit taxes and related information.

This service is particularly useful for organizations that need to validate driver's license information for purposes such as insurance, employment, and regulatory compliance.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document Type: Allowed values are: CC, CE, PA, RC.

CC

documentNumber

String

True

Driver's document number, without spaces or periods.

123456789

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/runt/conductor>',
  params: {documentType: 'CC', documentNumber: '123456789'},
    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": {
    "documentType": "CC",
    "documentNumber": "123456789",
    "fullName": "MATEO VERIFIK",
    "totallicencias": 1,
    "licencias": [
      {
        "licenceNumber": "123456789",
        "dueDate": "20/03/2025",
        "expeditionDate": "03/12/2015",
        "category": "B1",
        "status": "ACTIVA",
        "substratum": "LC01007028952"
      }
    ],
    "transitTaxes": {
      "paceAndSafe": "SI",
      "paceAndSafeNumber": "5541366484066",
      "transitTaxesNumber": "0",
      "suspensionStatus": "NO",
      "suspensionDate": "No Reporta",
      "cancellationStatus": "NO",
      "cancellationDate": "No Reporta"
    },
    "consultationDateTime": "2022-08-30T19:15:46.631Z"
  },
  "signature": {
    "dateTime": "August 30, 2022 2:15 PM",
    "message": "Certified by Verifik.co"
  }
}

Last updated