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
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}/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?