Upstream Vehicle Search

Access registration authority information to get unmatched vehicle data from a plate or VIN.

The Upstream API allows you to search for registration authority information by registration plate or VIN. You will receive back what the vehicle is registered as with varying structured data that the authority holds.

You can request information on anything with a registration plate, which means motorbikes, caravans, trucks and so on.

Importantly you will not receive an AutoGrab ID with these responses as we only maintain a catalogue for passenger vehicles. We are unable to match other vehicles like motorbikes or heavy trucks and are therefore unable to provide additional functions like valuation.

The request requires only a region, vin or registration plate and state plus an API key.

You will not receive an AutoGrab ID with your response.

Example

curl 'https://api.autograb.com.au/v2/vehicles/registrations/CNJ44K/upstream?region=au&state=NSW' \
      -H 'ApiKey: {API_KEY}'
{
    "success": true,
    "payload": {
        "vin": "KMHLC41DMCU016619",
        "year": "2012",
        "make": "Hyundai",
        "model": "i40",
        "badge": "VF",
        "series": "Premium",
        "fuel_type": "91 RON ULP",
        "body_style": "Sedan",
        "transmission": "6 auto",
        "capacity_cc": "2000",
        "colour": "Grey",
        "title": "2012 Hyundai VF i40 Premium 4 Sedan 6sp auto 2.0L 2000cc 4cyl Petrol 2012"
    }
}

Last updated