🇨🇷 Costa Rica - Información de Vehículos
Este servicio proporciona información detallada sobre un vehículo en Costa Rica usando su número de placa de matrícula. La respuesta incluye datos integrales como el nombre del propietario actual, detalles del vehículo (cilindrada del motor, valor fiscal, peso bruto y neto, capacidad de ocupantes, potencia y tracción), así como el historial de infracciones y el historial de propietarios anteriores.
Esta información es útil para varios propósitos, incluyendo verificación de vehículos, verificaciones históricas y monitoreo de cumplimiento.
Endpoint
GET https://api.verifik.co/v2/cr/vehicle
Headers
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
Parámetros
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
plate | string | Sí | Placa a consultar sin espacios ni puntos. | ABC123 |
Solicitud
- JavaScript
- Python
- PHP
- Swift
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/cr/vehicle',
params: {
plate: 'ABC123'
},
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer <tu_token>'
}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
import http.client
conn = http.client.HTTPSConnection("api.verifik.co")
payload = ''
headers = {}
conn.request("GET", "/v2/cr/vehicle?plate=ABC123", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.verifik.co/v2/cr/vehicle?plate=ABC123');
$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();
}
?>
var request = URLRequest(url: URL(string: "https://api.verifik.co/v2/cr/vehicle?plate=ABC123")!,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()
Respuesta
- 200
- 404
- 409
{
"data": {
"currentOwner": "GUILLERMO RODRIGUEZ SOLIS",
"dataVehicle": {
"engineDisplacement": "2389 c.c.",
"estateValue": "CRC 530,000",
"grossWeight": "1550 kgrms.",
"netWeight": "1100 kgrms.",
"noVin": "",
"occupants": "5",
"power": "85 KW. (114 HP)",
"traction": "NO APLICA"
},
"infractions": [
{
"judicialAuthority": "JUZGADO DE TRANSITO DEL II CIRCUITO JUDICIAL DE SAN JOSE",
"summaryNumber": "18-003179-0174-TR",
"ticketNumber": "2018243000156",
"type": "COLISIONES"
},
{
"judicialAuthority": "JUZGADO DE TRANSITO DEL II CIRCUITO JUDICIAL DE SAN JOSE",
"summaryNumber": "17-008609-0174-TR",
"ticketNumber": "2017202000461",
"type": "COLISIONES"
}
],
"ownerHistory": [
{
"date": "12/10/2016",
"fullName": "RODRIGUEZ GUILLERMO SOLIS"
},
{
"date": "15/02/2007",
"fullName": "RODRIGUEZ AGUSTIN SOLIS"
},
{
"date": "29/04/1991",
"fullName": "LAFUENTE ANDRES BARQUERO"
},
{
"date": "29/04/1991",
"fullName": "SALAS ANA EUGENIA VASQUEZ"
}
],
"plate": "123456",
"vehicle": "1987 NISSAN D21 GRIS"
},
"signature": {
"dateTime": "June 24, 2024 7:39 PM",
"message": "Certified by Verifik.co"
},
"id": "OJBUG"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
Características
- Recuperación de Información de Vehículos: Obtener detalles completos de vehículos del registro vehicular costarricense
- Validación de Placa de Matrícula: Verificar placas de matrícula de vehículos registradas en Costa Rica
- Información del Propietario Actual: Recuperar detalles del propietario actual del vehículo
- Especificaciones del Vehículo: Obtener cilindrada del motor, valor fiscal, peso, capacidad, potencia y tracción
- Historial de Infracciones: Acceder al historial completo de violaciones de tránsito e infracciones
- Historial de Propietarios: Ver lista cronológica de todos los propietarios anteriores del vehículo
- Autoridad Judicial: Obtener información sobre autoridades judiciales que manejan infracciones
- Información de Multas: Acceder a números de multas y números de resumen para infracciones
- Múltiples Lenguajes de Programación: Soporte para JavaScript, Python, PHP y Swift
- Datos en Tiempo Real: Acceder a información vehicular actual y actualizada
- Manejo Completo de Errores: Respuestas de error detalladas para varios escenarios
- Integración con Registro Costarricense: Acceso directo a base de datos oficial de vehículos de Costa Rica