Registration Status
Find a vehicle's registration status.
To retrieve the registration status & write-off information for a given vehicle, you can call the status endpoint.
Australia
In Australia, merely call the /v2/vehicles/{number_plate}/status endpoint with region=au. You must send the state in its short format, you can use the long format for front-end purposes if you require. Refer to the Australian state table under the Registration Search heading in this guide for a list.
Get a vehicle's registration status
Authorizations
Path parameters
plate_numberstringRequired
Plate number of the vehicle
Query parameters
regionstringOptional
statestringOptional
State is used in the AU region to narrow down a numberplate
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
get
/v2/vehicles/registrations/{plate_number}/statusGET /v2/vehicles/registrations/{plate_number}/status HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "plate_number": "text",
  "state": "text",
  "vin": "text",
  "registration_status": "text",
  "registration_expiry": "text",
  "manufacture_year": 1,
  "compliance_plate": "text",
  "incidents": [
    {
      "type_code": "text",
      "state": "text",
      "recorded_date": "text",
      "code": "text",
      "damage_codes": "text"
    }
  ]
}Last updated
Was this helpful?