Search for the MOT and Tax status of a vehicle.
Last updated 2 months ago
Was this helpful?
The MOT & Tax Search API allows you to obtain the current MOT and Tax status of a given vehicle based on its registration.
Get a vehicle's registration MOT and tax status
Plate number of the vehicle
GET /v2/vehicles/registrations/{plate_number}/mot-tax HTTP/1.1 Host: api.autograb.com.au ApiKey: YOUR_API_KEY Accept: */*
Success
{ "success": true, "is_dvsa_service_available": true, "is_dvla_service_available": true, "dvla_data": { "tax_status": "text", "tax_expiry_date": "text" }, "dvsa_data": { "vehicle_status_details": { "is_possible_classic_vehicle": true, "is_possible_ni_registered_vehicle": true }, "dvsa_vehicle_data": { "vehicle_registration_mark": "text", "manufacturer_desc": "text", "model_range_desc": "text", "first_registration_date": "text", "fuel_type_desc": "text", "colour": "text" }, "mot_tests": [ { "mot_test_number": 1, "mot_test_date": "text", "mot_test_result": "text", "mot_expiry_date": "text", "observation_mileage": 1, "reason_for_refusal_and_comments": [ { "comments": "text", "type": "text" } ] } ] } }