# Vehicle ID Search

If you know a vehicles ID already and would like summary data you can leverage a basic vehicle search.

{% openapi src="/files/TapIOjKDYdyzufcTwuea" path="/v2/vehicles/{vehicle\_id}" method="get" %}
[insurance\_updated.yaml](https://4010475651-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FFaCA1JqFKRrqIB0EfZlZ%2Fuploads%2FuDtxATuz0g12x4lhufjn%2Finsurance_updated.yaml?alt=media\&token=2565c3ea-325e-4bf3-b8e4-31792a5c9e79)
{% endopenapi %}

### **Example Response**

If you have the AutoGrab ID, for example 6742461841932288, you can request its standard vehicle object by using the request below.&#x20;

{% code overflow="wrap" %}

```json
curl --location 'https://api.autograb.com.au/v2/vehicles/6742461841932288?region=au' \
--header 'ApiKey: YOURKEY'
```

{% endcode %}

```json
{
    "vehicle": {
        "id": "6742461841932288",
        "region": "au",
        "title": "2015 Nissan Navara RX NP300 Diesel Auto Dual Cab",
        "year": "2015",
        "make": "Nissan",
        "model": "Navara",
        "badge": "RX",
        "series": "NP300",
        "model_year": "MY15",
        "release_month": 4,
        "release_year": 2015,
        "body_type": "Utility",
        "body_config": "Dual Cab",
        "transmission": "Sports Automatic",
        "transmission_type": "Automatic",
        "wheelbase": null,
        "wheelbase_type": null,
        "fuel": "Diesel",
        "fuel_type": "Diesel",
        "engine": "Piston",
        "engine_type": "Piston",
        "drive": "AWD",
        "drive_type": "Four Wheel Drive",
        "num_doors": 4,
        "num_seats": 5,
        "num_gears": 7,
        "num_cylinders": 4,
        "capacity_cc": 2298,
        "power_kw": 120,
        "torque_nm": 403,
        "range": 1311,
        "battery_kwh": null,
        "roof_type": null,
        "options": []
    },
    "success": true
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://devhub.autograb.com/vehicle-search/vehicle-id-search.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
