For the complete documentation index, see llms.txt. This page is also available as Markdown.

Recall Search

Check the recall status of a vehicle

Overview

The Recall Check API allows you to access the current recall status of a given vehicle based on the registration. This API requires authentication and an appropriate license attached to it.

Perform a recall check on a vehicle's registration

get

Perform a recall check on a vehicle's registration

Authorizations
ApiKeystringRequired
Path parameters
plate_numberstringRequired

Plate number of the vehicle

Query parameters
regionstringOptional
Responses
200

Success

application/json
successbooleanOptionalDefault: true
vehicle_registration_markstringOptional
vehicle_identification_numberstringOptional
smmt_manufacturer_model_descstringOptional
recall_statusstringOptional
recall_status_checked_datetimestringOptional

Date and time in ISO 8601 format with time offset

recall_qtynumberOptional
get/v2/vehicles/registrations/{plate_number}/recall-check
GET /v2/vehicles/registrations/{plate_number}/recall-check HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "vehicle_registration_mark": "text",
  "vehicle_identification_number": "text",
  "smmt_manufacturer_model_desc": "text",
  "recall_status": "text",
  "recall_status_checked_datetime": "text",
  "recall_qty": 1,
  "recall_data_items": [
    {
      "recall_desc": "text"
    }
  ]
}

Last updated

Was this helpful?