> For the complete documentation index, see [llms.txt](https://devhub.autograb.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://devhub.autograb.com/autograb/asset-classes.md).

# Asset Classes

{% hint style="info" %}
New asset classes are rolling out in phases with support expanding across Australian product lines. Ask us about how this rollout works in your specific use case.&#x20;
{% endhint %}

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.&#x20;

* `conventional`: Passenger and Light Commercial vehicles.&#x20;
* `powersports`: Motorbikes, ATVs and UTVs
* `camping`: Caravans, Campervans, Motorhomes, Camper Trailers, etc.&#x20;
* `heavy_trucks`: Prime Movers and other heavy commercial vehicles.&#x20;

You will need a license per asset class in order to constrain or access its specific catalogue.&#x20;

For example for [Facet Searches](/vehicle-search/facet-search.md) using `category=powersports` limits this search for "makes" to only those categorised as powersports.&#x20;

{% code overflow="wrap" %}

```json
curl --location 'https://api.autograb.com.au/v2/vehicles/facets?facet=make&region=au&category=powersports' \
--header 'ApiKey: YOURKEY'
```

{% endcode %}

For [Registration](/vehicle-search/registration-plate-search.md) or [VIN](/vehicle-search/vin-search.md) 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.&#x20;

{% code overflow="wrap" %}

```json
curl --location 'https://api.autograb.com.au/v2/vehicles/registrations/CCU542?state=VIC&region=au&category=powersports' \
--header 'ApiKey: YOURKEY'
```

{% endcode %}

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

{% code overflow="wrap" %}

```json
            "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 
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://devhub.autograb.com/autograb/asset-classes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
