Pico y Placa
Endpointโ
https://api.verifik.co/v2/co/vehiculo/pico-y-placa
This service 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. The API retrieves information on any exceptions or special conditions that may apply.
Headersโ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersโ
| Name | Type | Required | Description |
|---|---|---|---|
plate | string | Yes | Vehicle plate to consult. |
Requestโ
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/vehiculo/pico-y-placa", {
params: { plate: "ABC123" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/vehiculo/pico-y-placa"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "ABC123"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseโ
- 200
- 404
- 409
{
"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": {"message": "Certified by Verifik.co", "dateTime": "August 23, 2022 10:55 AM"}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate"
}
Notesโ
- This service only works for vehicles registered in Bogotรก.
- Pico y Placa restrictions are based on the last digit of the license plate.
- Exceptions may apply for vehicles with special permits (disability, emergency, etc.).
- Status "ACTIVO" indicates the exception is currently valid.