Este servicio te permite obtener información detallada sobre un vehículo utilizando su matrícula. La respuesta proporciona detalles clave como la marca, modelo, tipo, año e información de registro. Es un recurso valioso para acceder a datos completos sobre un vehículo según su matrícula.
Para hacer uso de este servicio en una interfaz gráfica te invitamos a ingresar a nuestro client panel de Verifik.
Nombre | Tipo | ¿Requerido? | Descripción | Ejemplo |
---|---|---|---|---|
plate | String | True |
Placa a consultar, sin espacios ni puntos. | ABC123 |
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/ar/vehicle>',
params: {plate: 'ABC123'},
headers: {
Accept: 'application/json',
Authorization: 'jwt <tu_token>'
}
};
try {
notFou const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
{
"data": {
"brand": "FORD",
"chassis": "",
"codeRegistrySectional": "13003",
"headlines": null,
"isPlateMercosur": "false",
"model": "FOCUSEXE TREND 1.6L NAFTA",
"plate": "ABC123",
"recordAddress": "ALBUERA 554",
"registrationDenomination": "GENERAL SAN MARTIN N° 1",
"registrationLocality": "GRAL.SAN MARTIN",
"registrationProvince": "",
"type": "MOTOVEHICULO",
"year": "2011"
},
"signature": {
"dateTime": "December 18, 2023 10:17 PM",
"message": "Certified by Verifik.co"
},
"id": "HYD15"
}
Code | Descripción | Response Body | |
---|---|---|---|
404 |
Not Found | Información no encontrada | { |
"code": "NotFound", | |||
"message": "Record not found.", | |||
"signature": { | |||
"dateTime": "August 31, 2022 3:24 PM", | |||
"message": "Certified by Verifik.co" | |||
} | |||
} | |||
409 |
Conflict | Hace falta suministrar algún parámetro. | { |
"code": "MissingParameter", | |||
"message": "missing plate\n" | |||
} |