Specifications Data

Request general data about specific vehicles

The Vehicle Specs API allows you to retrieve comprehensive vehicle specifications for any vehicle referenced by its Autograb Vehicle ID.

To retrieve a vehicle's specifications, you will need a region and a vehicle id.

Example

curl "v2/vehicles/5804870883868672/specs?region=au" \
     -H 'ApiKey: {API_KEY}'
{
    "specs": {
        "id": "5804870883868672",
        "region": "au",
        "year": "2019",
        "make": "Volkswagen",
        "model": "Polo",
        "badge": "85TSI Comfortline",
        "series": "AW",
        "generation": "AW/AE",
        "model_year": "MY19",
        "release_month": 8,
        "release_year": 2018,
        "origin_country": "SOUTH AFRICA",
        "ancap_rating": 5,
        "ancap_year": 2017,
        "num_airbags": 6,
        "engine_type": "Piston",
        "induction_type": "Turbo Intercooled",
        "engine_location": "Front",
        "engine_config": "In-line",
        "engine_code": "DKJA",
        "camshaft": "DOHC with VVT",
        "num_cylinders": 3,
        "capacity_cc": 999,
        "valves_per_cylinder": 4,
        "compression_ratio": 10.5,
        "power_kw": 85,
        "power_rpm": 5500,
        "torque_nm": 200,
        "torque_rpm_min": 2000,
        "torque_rpm_max": 3500,
        "power_weight_ratio": 73.8,
        "acceleration_seconds": 9.5,
        "max_speed": null,
        "ev_power_kw": null,
        "ev_torque_nm": null,
        "combined_power_kw": null,
        "ev_battery_type": null,
        "ev_current_type": null,
        "ev_voltage": null,
        "ev_engine_code": null,
        "ev_engine_number": null,
        "ev_charge_method": null,
        "ev_charge_voltage": null,
        "ev_charge_time_minutes": null,
        "ev_fast_charge_time_minutes": null,
        "ev_battery_capacity_ah": null,
        "transmission": "Dual Clutch Automatic (DCT)",
        "transmission_type": "Automatic",
        "gear_location": "Floor",
        "drive": "FWD",
        "drive_type": "Front Wheel Drive",
        "num_gears": 7,
        "fuel_type": "Petrol",
        "fuel_capacity": 40,
        "ron_rating": 95,
        "fuel_delivery_type": "Direct Injection",
        "fuel_delivery_method": "Electronic Sequential",
        "fuel_consumption_combined_liters_per_100km": 4.91,
        "fuel_consumption_urban_liters_per_100km": 5.81,
        "fuel_consumption_extra_urban_liters_per_100km": 4.41,
        "fuel_cost_per_1000km": 96,
        "fuel_cost_per_fill": 78,
        "avg_range": 816,
        "max_range": 909,
        "min_range": 690,
        "ev_range": null,
        "emissions_combined_grams_per_km": 112,
        "emissions_urban_grams_per_km": 133,
        "emissions_extra_urban_grams_per_km": 100,
        "emissions_combined_grams_per_100km": 11200,
        "emissions_urban_grams_per_100km": 13300,
        "emissions_extra_urban_grams_per_100km": 10000,
        "emission_standard": "Euro 6",
        "steering_type": "Rack and Pinion",
        "rim_material": "Alloy",
        "front_rim_description": "15x5.5",
        "rear_rim_description": "15x5.5",
        "front_tyre_description": "185/65 R15",
        "rear_tyre_description": "185/65 R15",
        "length_mm": 4053,
        "width_mm": 1751,
        "height_mm": 1446,
        "wheelbase_mm": 2548,
        "boot_min_liters": 351,
        "boot_max_liters": 1125,
        "load_length_mm": 1380,
        "track_front_mm": 1521,
        "track_rear_mm": 1501,
        "front_overhang_mm": null,
        "rear_overhang_mm": null,
        "kerb_turning_circle_meters": 10.6,
        "enclosed_turning_circle_meters": null,
        "ground_clearance_mm": null,
        "wading_depth_mm": null,
        "approach_angle": null,
        "departure_angle": null,
        "breakover_angle": null,
        "kerb_weight_kg": null,
        "tare_weight_kg": 1152,
        "gross_vehicle_weight_kg": null,
        "gross_combination_weight_kg": null,
        "payload_kg": null,
        "braked_towing_capacity_kg": 1000,
        "unbraked_towing_capacity_kg": 590,
        "maximum_front_axle_load_kg": null,
        "maximum_rear_axle_load_kg": null,
        "factory_warranty_years": 5,
        "factory_warranty_kms": "Unlimited km",
        "factory_anti_corrosion_warranty_years": 12,
        "factory_customer_assistance": "1 year Roadside",
        "factory_free_services": null,
        "first_service_km": 15000,
        "first_service_months": 12,
        "service_interval_kms": 15000,
        "service_interval_months": 12,
        "nsw_p_plate_status": "Allowed",
        "vic_p_plate_status": null,
        "wa_p_plate_status": null,
        "tas_p_plate_status": null,
        "qld_p_plate_status": null,
        "nt_p_plate_status": null,
        "sa_p_plate_status": null,
        "act_p_plate_status": null,
        "rrp": 22790
    },
    "match_differences": [],
    "success": true
}
```

The Vehicle Partial Specs API allows you to retrieve partial specs relating to a vehicle. This is useful in situations where you are interested in specific details, and do not need to retrieve the whole specification listing.

To retrieve a vehicle's partial specifications, you will need a region, a vehicle id and the list of partial specs categories.

Partial specs can be retrieved for any combination of the following specs categories:

Example to retrieve base, safety, fuel and range partial specs

curl "/v2/vehicles/2756120678262620/specs/partial?region=au&selectors=base&safety" \
     -H 'ApiKey: {API_KEY}'
Features ParameterResult

base

safety

engine

power

ev_battery

drive

fuel

range

emissions

dimensions

weights

warranty

services

p_plate_status

rrp

Regional Coverage

This API relies upon the upstream Spec Search API, for its availability refer to the Spec Search summary in the section above.

This feature is not yet available in Malaysia or the United Kingdom

Last updated