MOT & Tax Search

Search for the MOT and Tax status of a vehicle.

Overview

The MOT & Tax Search API allows you to obtain the current MOT and Tax status of a given vehicle based on its registration.

Example

For example, your request would resemble the below:

curl "https://api.autograb.com.au/v2/vehicles/registrations/WM23DXA/mot-tax?region=uk"
-H 'ApiKey: {API_KEY}

If that vehicle was found all its relevant MOT and Tax status data will be returned, for example below:

{
    "success": true,
    "is_dvla_service_available": true,
    "is_dvsa_service_available": true,
    "dvla_data": {
        "tax_status": "Taxed",
        "tax_expiry_date": "2024-06-01"
    },
    "dvsa_data": {
        "vehicle_status_details": {
            "is_possible_classic_vehicle": false,
            "is_possible_ni_registered_vehicle": false
        },
        "dvsa_vehicle_data": {
            "vehicle_registration_mark": "WM23DXA",
            "manufacturer_desc": "BMW",
            "model_range_desc": "M135I XDRIVE AUTO",
            "first_registration_date": null,
            "fuel_type_desc": "Petrol",
            "colour": "Yellow"
        },
        "mot_tests": null
    }
}

Last updated