🇨🇱Información del vehículo

Servicio para consultar vehículos chilenos mediante su placa

Información del vehículo

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

Este endpoint de API permite verificar la información de un vehículo registrado en Chile proporcionando su número de patente. La respuesta incluye detalles como el número de chasis, número de motor, fabricante, modelo, año, color y cualquier multa pendiente asociada al vehículo. Además, la API también proporciona información sobre el propietario del vehículo, el tipo de vehículo y su origen, cuando esté disponible. Ten en cuenta que es necesario proporcionar el número de patente del vehículo para consultar su información.

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/cl/vehicle>',
  params: {plate: 'BB985'},
    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": {
    "chasisNumber": "ME1KG0447E2066723",
    "color": "NEGRO",
    "engineNumber": "1ES3032465",
    "fines": "NO POSEE MULTAS",
    "manufacturer": "NO DISPONIBLE",
    "mark": "YAMAHA",
    "model": "FZ 16",
    "orderTheft": "NO DISPONIBLE",
    "origin": "NO DISPONIBLE",
    "owner": "",
    "plate": "BB985",
    "publicTrans": "NO DISPONIBLE",
    "revision": "NO DISPONIBLE",
    "rut": "26043542-6",
    "type": "MOTO",
    "typeTransPub": "NO DISPONIBLE",
    "year": "2014"
  },
  "signature": {
    "dateTime": "April 21, 2023 8:32 PM",
    "message": "Certified by Verifik.co"
  }
}

Last updated