VRM Search

Find vehicle information from a vehicle registration mark.

Overview

The Vehicle Registration API allows you to search for a vehicle by supplying its VRM.

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

That would produce the payload below.

{
    "success": true,
    "vehicle_identification": {
        "ukvd_id": "V-JZTYRS",
        "ukvd_uvc": "M-NPGXL",
        "vehicle_registration_mark": "KW73NKE",
        "vehicle_identification_number": "W1K5J5BB4PN369431",
        "dvla_manufacturer_desc": "MERCEDES-BENZ",
        "dvla_model_desc": "AMG CLA 35 PREMIUM 4MATIC AUTO",
        "dvla_wheelplan": "2 AXLE RIGID BODY",
        "registration_date": "2023-11-20",
        "first_registration_date": "2023-11-20",
        "used_before_first_registration": false,
        "manufactured_year": 2023,
        "v5c_qty": 1,
        "date_v5c_issued": "2023-11-20",
        "engine_number": "26092030493649",
        "prior_ni_vrm": "",
        "dvla_body_desc": "COUPE",
        "dvla_fuel_desc": "PETROL"
    },
    "vehicle_status_details": {
        "is_non_eu_import": false,
        "is_imported": false,
        "certificate_of_destruction_issued": false,
        "is_exported": false,
        "exported_date": null,
        "is_scrapped": false,
        "scrapped_date": null
    },
    "vehicle_excise_duty_details": {
        "co2_gkm": 191,
        "dvla_co2_band": null,
        "12_month_rfl_y1": 1650,
        "6_month_rfl_y2_to_y6_premium": 330,
        "12_month_rfl_y2_to_y6_premium": 600,
        "6_month_rfl_y2_to_y6": 104.5,
        "12_month_rfl_y2_to_y6": 190
    },
    "colour_details": {
        "colour": "WHITE",
        "colour_changes_qty": 0,
        "original_colour": "WHITE",
        "last_colour": null,
        "date_of_last_colour_change": null
    },
    "keeper_change_list": [],
    "plate_change_list": []
}

Last updated