check information about a vehicle, including its vin, by vrm (registration/number plate).
GET
vrm is the car's registration/number plate (with or without spaces).
success: boolean,
vehicle: {
make: string,
model: string,
vrm: string,
vin: string,
body_style: string,
wheel_plan: string,
engine: {
model: string,
number: string,
size: string
},
euro_standard: string,
drive_train: string,
first_registered: string,
},
mot: {
valid: string | null,
expires: string | null,
},
success: true,
vehicle: {
make: "TOYOTA",
model: "CARINA E GS",
vrm: "P204APD",
vin: "SB164ABK10E042614",
body_style: "5 DOOR HATCHBACK",
wheel_plan: "2-AXLE-RIGID BODY",
engine: {
model: "7A-FE",
number: "7AU248650",
size: "1762"
},
euro_standard: "E2",
drive_train: "4X2",
first_registered: "1996-08-01",
},
mot: {
valid: null,
expires: null,
},