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.

Get a vehicle's registration MOT and tax status

get

Get a vehicle's registration MOT and tax status

Authorizations
Path parameters
plate_numberstringRequired

Plate number of the vehicle

Query parameters
regionstringOptional
Responses
200
Success
application/json
get
GET /v2/vehicles/registrations/{plate_number}/mot-tax HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Accept: */*
{
  "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"
          }
        ]
      }
    ]
  }
}

Last updated

Was this helpful?