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.