🇨🇴Verifik Pico y Placa for Bogotá

Service to check if a vehicle has exemptions from the peak and plate restriction in the city of Bogotá.

Verifik Pico y Placa for Bogota

GET - https://api.verifik.co/v2/co/vehiculo/pico-y-placa

The Verifik Pico y Placa API for Bogotá provides real-time information on the Pico y Placa schedule for vehicles registered in Bogotá, Colombia. Pico y Placa is a traffic restriction policy that limits vehicle circulation based on the last digit of the license plate. This API allows developers to query the Pico y Placa schedule for a given license plate and retrieve information on any exceptions or special conditions that may apply.

Please note that this service only works for vehicles registered in Bogotá and is intended for informational purposes only.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

plate

String

True

Vehicle plate to consult.

ABC123

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/vehiculo/pico-y-placa>',
  params: {plate: 'ABC123'},
  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": {
    "placa": "ABC123",
    "causalExcepcion": "Discapacidad - Documento #: 12345678",
    "activoDesde": "16-06-2022 07:00:28 PM",
    "estado": "ACTIVO",
    "detalles": {
      "informaciónDeLaExcepcion": [
        "Tipo Excepción: Discapacidad",
        "Descripción: vehiculos de personas con discapacidad.Automotores que transporten o sean conducidos por personas con discapacidad permanente, cuya condición motora, sensorial o mental limite su movilidad, siempre y cuando cumplan las normas establecidas.",
        "Fecha Registro: 16-06-2022 05:25:29 PM"
      ],
      "observaciones": [
        "Información validada ante en RUNT. "
      ],
      "informaciónDeLaPersonaEnCondicionDeDiscapacidad": [
        "Nombres: MATEO VERIFIK",
        "No. Documento: 1112345678"
      ],
      "informaciónDelvehiculo": [
        "Placa: EHO820",
        "ACTIVO"
      ]
    }
  },
  "signature": {
    "dateTime": "August 23, 2022 10:55 AM",
    "message": "Certified by Verifik.co"
  }
}

Last updated