Use this if you have a configuration to receive detailed specifications
The detailed specifications endpoint supports multiple catalogues and their vehicle IDs. Below are the currently supported IDs:
AutoGrab Vehicle IDs
Jato Catalogue or Vehicle IDs
If no catalogue identifier is passed in as part of the call, the default is autograb
A vehicle ID can be obtained using any of our vehicle identifications and search endpoints:
The values received for a given specifications call are based on what is contained in the configured API keys contract. In the above example, kerb_weight and tare_weight are returned.
Where relevant, an int_value and a string value for each specification will be returned.
The detailed specifications endpoint will assume the ID being submitted is an AutoGrab vehicle ID unless the feature parameter catalogue .
When using Jato codes, the catalogue the feature parameter value is required to be set to jato
The response you receive will be defined by the configuration we store for you based on your specific business case. This applies to the inclusion of particular items as well as the inclusion of the "type".
curl --location 'https://api.autograb.com.au/v2/vehicles/7837072107620328/detailed-specs?region=au' \
--header 'Apikey: ••••••'{
"success": true,
"specs": [
{
"category": "Weights",
"id": "kerb_weight",
"description": "kerb weight",
"value": "1442",
"int_value": 1442,
"location": null
},
{
"category": "Weights",
"id": "tare_weight",
"description": "tare weight",
"value": "1411",
"int_value": 1411,
"location": null
}
],
"confidence": "standard"
}curl --location 'https://api.autograb.com.au/v2/vehicles/2022-831964720220610/detailed-specs?region=au&catalogue=jato' \
--header 'Apikey: ••••••'{
"success": true,
"specs": [
{
"category": "Version",
"id": null,
"description": "Make",
"value": "Volkswagen",
"int_value": null,
"location": null
},
{
"category": "Version",
"id": null,
"description": "Model",
"value": "Polo",
"int_value": null,
"location": null
},
{
"category": "Version",
"id": null,
"description": "Version",
"value": "85TSI Comfortline DSG",
"int_value": null,
"location": null
},
{
"category": "Version",
"id": null,
"description": "Body type",
"value": "hatchback",
"int_value": null,
"location": null
},
{
"category": "Version",
"id": null,
"description": "Seating capacity",
"value": "5",
"int_value": null,
"location": null
},
{
"category": "Equipment",
"id": null,
"description": "Air Conditioning type",
"value": "manual",
"int_value": null,
"location": null
},
{
"category": "Equipment",
"id": null,
"description": "Front and rear power windows",
"value": "S",
"int_value": null,
"location": "F"
},
],
"confidence": "standard"
}