Vehicle ID Search
Get summary data on a vehicle by searching for its ID
If you know a vehicles ID already and would like summary data you can leverage a basic vehicle search.
Get a vehicle by its ID
Authorizations
ApiKeystringRequired
Path parameters
vehicle_idstringRequired
ID of the vehicle returned from a search
Query parameters
regionstring · enumOptionalPossible values:
The region to perform this request in
reference_idstringOptional
An optional reference id which will be stored against usage records if supplied
Responses
200
Success
application/json
successbooleanOptionalDefault:
true400
Bad Request
application/json
401
Unauthorized
application/json
get/v2/vehicles/{vehicle_id}
GET /v2/vehicles/{vehicle_id} HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Accept: */*
{
"success": true,
"vehicle": {
"id": "text",
"region": "au",
"title": "text",
"year": 1,
"make": "text",
"model": "text",
"badge": "text",
"series": "text",
"body_type": "text",
"body_config": "text",
"transmission": "text",
"wheelbase": "text",
"fuel": "text",
"engine": "text",
"drive": "text",
"num_doors": 1
}
}Example Response
If you have the AutoGrab ID, for example 6742461841932288, you can request its standard vehicle object by using the request below.
Last updated
Was this helpful?