LogoLogo
API StatusSupportPostmanContact Us
🇬🇧 UK AutoGrab API Doc
🇬🇧 UK AutoGrab API Doc
  • AutoGrab Basics
    • AutoGrab Developer Hub
    • Integration Overview
    • API Test Cases
    • FAQ
  • Authentication
    • API Key
    • OAuth Authentication
  • Vehicle Search
    • Vehicle Searching Basics
    • Plain-text Search
    • VRM Search
    • VIN Search
    • Facet Search
    • Vehicle ID Search
    • Marketplace ID Lookup
  • Sourcing
    • Sourcing Basics
    • Market Overlay
    • Market Statistics
    • Stock Feeds
  • Vehicle Data
    • Vehicle Data Basics
    • Recall Search
    • MOT & Tax Search
    • Vehicle History
    • Factory Build Data
    • Factory Fitted Options
  • Valuation
    • Valuation Basics
    • Valuation Predictions
    • Residual Valuations
    • Max Offer Configuration
    • Gauge API
  • Embeddable Products
    • Embeddable Basics
    • Gauge Widget
    • Valuation Widget
    • Market Overlay Widget
  • Customer Recapture
    • Customer Recapture
    • Webhooks Integration
  • Insurance
    • Pre-Accident Valuation
Powered by GitBook
LogoLogo

Links

  • Terms of Use

2024 © AutoGrab Pty Ltd. ABN 79 638 468 569

On this page

Was this helpful?

Export as PDF
  1. Vehicle Data

MOT & Tax Search

Search for the MOT and Tax status of a vehicle.

PreviousRecall SearchNextVehicle History

Last updated 3 months ago

Was this helpful?

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
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
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"
          }
        ]
      }
    ]
  }
}
  • Overview
  • GETGet a vehicle's registration MOT and tax status