Description
The Vehicle Information service provides detailed information about a vehicle in Mexico based on its license plate number. This service specifically returns information about a vehicle's make, model, year, VIN, and other related details.
Parameters
Name |
Type |
Required? |
Description |
Example |
plate |
String |
True |
Vehicle license plate to consult. |
ABC1234 |
Implementation
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 {
notFou const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Response 200 - (Successful 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"
}
Other responses
|
Code |
Description |
Response Body |
404 |
Not Found |
Not Found |
{ |
"code": "NotFound", |
|
|
|
"message": "Record not found.", |
|
|
|
"signature": { |
|
|
|
"dateTime": "August 31, 2022 3:24 PM", |
|
|
|
"message": "Certified by Verifik.co" |
|
|
|
} |
|
|
|
} |
|
|
|
409 |
Conflict |
Missing params |
{ |
"code": "MissingParameter", |
|
|
|
"message": "missing plate\n." |
|
|
|
} |
|
|
|