# Features

The market overlay can be enhanced by passing option feature parameters. You can request a single feature or combine them to enrich your responses. You must have a unique permission enabled by your sales representative for each feature.&#x20;

#### Dealer Contact Details

This feature will deliver the contact details of the advertising dealership as per the listing. Use `features=dealer_contact_details`

```json
"contact_name": "Example Motors",
"contact_number": "+61 3 2568 6587",
```

#### Lead Starting Price&#x20;

This feature will deliver the initial price the lead was advertised at. Use `features=lead_starting_price`

```json
"starting_price": 73990,
```

#### Lead Price Drops&#x20;

This feature will deliver the count of times the price has been dropped. If you would like to know what each drop (or increase) was consider the [Vehicle History](/nz-autograb-api-doc/vehicle-data/vehicle-history.md) endpoint. Use `features=lead_price_drops`

```json
"price_drop_count": 2,
```

#### Vehicle RRP&#x20;

This feature will deliver the RRP of the vehicle when it was new according to our vehicle data catalogue, the same data and more is available via our [Specifications endpoint](broken://pages/n1Cz9I21Dj55ipoxUTgB). Use `features=vehicle_rrp`

```json
"price_when_new": 46990,
```

#### All Listing URLs

This feature will deliver the listing URLs related to the lead across all sites it is listed on. Use `features=listing_urls`

{% code overflow="wrap" %}

```json
            "listing_url": "https://www.autotrader.co.nz/used-cars-for-sale/volkswagen/polo/781308",
            "is_outlier": false,
            "listing_details": [
                {
                    "source": "autotrader.co.nz",
                    "url": "https://www.autotrader.co.nz/used-cars-for-sale/volkswagen/polo/781308"
                }
            ]
```

{% endcode %}

#### **Primary Cover Image**&#x20;

This feature will deliver the  cover image for each record where available. Each image is stored for 90 days after delisting. Use `features=cover_image`

{% code overflow="wrap" %}

```json
"cover_image_url": "https://storage.googleapis.com/download/storage/v1/b/ag-img/o/1700380596629%2F402495842_660380.jpg?generation=1700380597213918&alt=media"
```

{% endcode %}

#### **All Images**&#x20;

This feature will deliver all primary images for each record where available. Each image is stored for 90 days after delisting. Use `features=all_images`

{% code overflow="wrap" %}

```json
"all_images": [
                "https://storage.googleapis.com/download/storage/v1/b/ag-img/o/1713129285535%2Fd7ec39ad-671b-4b.jpg?generation=1713129287041771&alt=media",
                "https://storage.googleapis.com/download/storage/v1/b/ag-img/o/1713129291498%2Fd3c1928d-a0f4-4f.jpg?generation=1713129292538543&alt=media",
                "https://storage.googleapis.com/download/storage/v1/b/ag-img/o/1713129296398%2Ff982ef2b-a25f-47.jpg?generation=1713129297432084&alt=media",
                "https://storage.googleapis.com/download/storage/v1/b/ag-img/o/1713129300707%2Fb4350079-4f04-4c.jpg?generation=1713129302187962&alt=media",
                "https://storage.googleapis.com/download/storage/v1/b/ag-img/o/1713129306170%2F2a88d686-c4b7-4a.jpg?generation=1713129307655700&alt=media"
            ]
```

{% endcode %}

#### **Primary Listing Description**&#x20;

This feature will deliver the primary listing description for each record where available. Use `features=primary_description`

{% code overflow="wrap" %}

```json
 "primary_description": "Near new condition 2022 Jeep Grand Cherokee Limited 4x4 <br> <br> <br> * Panormaic roof <br> * All Wheel Drive <br> * 20-inch Alloy Wheels <br> * 10.1-inch Touchscreen Display <br> * Wireless Apple CarPlay and Android Auto <br> * Leather Seats <br> * Heated & Ventillated front seats <br> * Heated steering wheel <br> * 9 Speaker Premium Audio System <br> * Power liftgate with adjustable height settings <br> * Automatic LED headlamps with Automatic highbeam <br> * Automatic Windscreen Wipers <br> * 10.25\" Multiview Display cluster <br> * 360 ParkView Rear Back-up Camera <br> * Front and Rear Park Assist with Stop <br> * Tyre Pressure Monitoring <br> * Keyless Entry with Push Button Start <br> * Blind Spot Monitoring with Rear Cross-Path Detection <br> * Adaptive Cruise Control with Stop and Go <br> * Active Lane Management <br> * Pedestrian Automatic Emergency Braking (with cyclist detection) <br> <br> We also accept trade ins, So bring down your pride and joy and we can price it on the spot! <br> <br> With easy onsite finance pre approvals available you can be in your new car in no time. <br> <br> WE ARE A PRIVATE OWNED DEALERSHIP JUST 20 MINUTES NORTH OF PERTH CITY,<br/><strong>Motor Mall WA</strong><br/>41 Buckingham Drive Wangara, WA 6065<br/>License number: 29875"
```

{% endcode %}

#### Registration Plate

This feature will deliver the vehicle's registration plate in the market overlay payload. Use `features=rego`

```json
"rego": "FDT46H",
```

#### VIN

This feature will deliver the vehicle's VIN in the market overlay payload. Use `features=VIN`

```json
"vin": "MR0BA3CD900173054",
```

#### Stock Number

This feature will deliver the vehicle's stock number in the market overlay payload. Use `features=stock_no`

```json
"stock_no": 123ABC,
```


---

# 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/nz-autograb-api-doc/sourcing/market-overlay/features.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.
