🇲🇽México
Servicio para consultar vehículos mexicanos utilizando su número de placa.
Información de Vehículos Mexicanos
GET - https://api.verifik.co/v2/mx/vehiculo/placa
El servicio de Información de Vehículos proporciona información detallada sobre un vehículo en México, basándose en su número de placa. Este servicio devuelve información específica sobre la marca, modelo, año, VIN y otros detalles relacionados con el vehículo.
Implementación
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Query Parameters
Name
Type
Required?
Description
Example
plate
String
True
Vehicle license plate to consult.
ABC1234
Request
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/mx/vehiculo/placa>',
params: {plate: 'ABC1234'},
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": {
"assemblyPlant": "MMTH, TAILANDIA",
"axlesNumber": "null",
"brand": "MITSUBISHI",
"complement": "CINTS DE SEGURIDAD CON AIRBAG HATCHBACK, 5 PUERTAS MMTH, TAILANDIA CLASE S, M L3, 1.2L",
"countryOfOrigin": "THAILANDIA",
"cylinderNumber": "L3",
"displacement": "1.2L",
"doorNumber": "5 PUERTAS",
"entityId": "0",
"importId": "0",
"institutionId": "203",
"institutionName": "FCA MEXICO,S.A. DE C.V. (ANTES CHRYSLER DE MEXICO, S.A. DE C.V.)",
"issueDate": "03/01/22",
"licenseEntity": "DISTRITO FEDERAL",
"line": "GLX HATCHBACK MANUAL",
"markings": "0",
"model": "MIRAGE",
"modelYear": "2016",
"movement": "CAMBIOS DE PROP., DOM. E INF. DEL VEH.",
"movementType": "9",
"nrpv": "4CLMCPOG",
"plate": "ABC1234",
"registrationDate": "10/11/15",
"registrationTime": "10:17:22",
"rpvFolio": "22558452",
"type": "HATCHBACK",
"updateDate": "27/01/22",
"vin": "ML3AA2812AVB03902"
},
"signature": {
"dateTime": "June 24, 2024 7:06 PM",
"message": "Certified by Verifik.co"
},
"id": "6391I"
}
Last updated