Vehicle Validation🇨🇴 Colombia🇨🇴 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
Query Parameters
Name
Type
Required?
Description
Example
Vehicle plate to consult.
Request
JavaScript Python Swift PHP
Copy 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 {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Copy import http.client
conn = http.client.HTTPSConnection("api.verifik.co")
payload = ''
headers = {}
conn.request("GET", "/v2/co/vehiculo/pico-y-placa?plate=", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Copy var request = URLRequest(url: URL(string: "https://api.verifik.co/v2/co/vehiculo/pico-y-placa?plate=")!,timeoutInterval: Double.infinity)
request.httpMethod = "GET"
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data else {
print(String(describing: error))
return
}
print(String(data: data, encoding: .utf8)!)
}
task.resume()
Copy <?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.verifik.co/v2/co/vehiculo/pico-y-placa?plate=');
$request->setMethod(HTTP_Request2::METHOD_GET);
$request->setConfig(array(
'follow_redirects' => TRUE
));
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
}
else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
$response->getReasonPhrase();
}
}
catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}
Response
200 404 409
Copy {
"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"
}
}
Copy {
"code": "NotFound",
"message": "Record not found.",
"signature": {
"dateTime": "August 31, 2022 3:24 PM",
"message": "Certified by Verifik.co"
}
}
Copy {
"code": "MissingParameter",
"message": "missing plate\n"
}
Last updated 2 months ago