🇨🇷Costa Rica

Servicio para consultar vehículos en Costa Rica utilizando la placa del vehículo.

Información de Vehículos de Costa Rica

GET - https://api.verifik.co/v2/cr/vehicle

Este servicio proporciona información detallada sobre un vehículo en Costa Rica utilizando su número de placa. La respuesta incluye datos completos como el nombre del propietario actual, detalles del vehículo (cilindraje, 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 diversos fines, incluyendo la verificación del vehículo, la consulta de historial y el seguimiento de cumplimiento normativo.

Para utilizar este servicio en una interfaz gráfica, te invitamos a acceder a nuestro panel de clientes en Verifik.

Implementación

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

plate

String

True

Plate to consult without spaces or points.

ABC123

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/cr/vehicle>',
  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);
}

Response

{
    "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"
}

Last updated