Asset Classes
AutoGrab supports a growing range of asset classes. Each additional asset class fit seamlessly into our existing set of API endpoints. You can request or constrain your searches to the following asset classes.
conventional: Passenger and Light Commercial vehicles.powersports: Motorbikes, ATVs and UTVscamping: Caravans, Campervans, Motorhomes, Camper Trailers, etc.heavy_trucks: Prime Movers and other heavy commercial vehicles.
You will need a license per asset class in order to constrain or access its specific catalogue.
For example for Facet Searches using category=powersports limits this search for "makes" to only those categorised as powersports.
curl --location 'https://api.autograb.com.au/v2/vehicles/facets?facet=make®ion=au&category=powersports' \
--header 'ApiKey: YOURKEY'For Registration or VIN Search you can also force the system to match whatever input you give it to a specific catalogue. In the scenario below the input is a tesla but the catagory is powersports. The response shows a reduced confidence match.
curl --location 'https://api.autograb.com.au/v2/vehicles/registrations/CCU542?state=VIC®ion=au&category=powersports' \
--header 'ApiKey: YOURKEY'In the responses body you also will see a "category" line showing you the asset type of the specific vehicle. The example below is from a free text search
"id": "0112728441671777",
"legacy_id": "0112728441671777",
"category": "conventional",
"badge": "320i SE",
"make": "BMW",
"model": "3 Series",
"series": "F30",
"title": "2016 BMW 3 Series 320i SE F30 Auto"
// trimmed Last updated
Was this helpful?