# Valuation Features

You can request more data than the standard payload by leveraging a range of features described below.&#x20;

{% hint style="info" %}
Ensure your commercial agreement has these features enabled if you require them.&#x20;
{% endhint %}

**Max Offer - Retail Base**

This feature will return your max configuration in your valuation with the final price showing the deductions from the retail valuation. Use `features=max_offer` to receive this payload. Read more on how to set and update your [configuration here](/valuation/max-offer-configuration.md).

```json
    "max_offer": {
        "reconditioning": 1250,
        "profit_margin": 3116.04,
        "lot": 1000,
        "transport": 300,
        "admin": 150,
        "price": 20150.96
    }
```

**Max Offer - Trade Base**

This feature will return your max configuration in your valuation with the final price showing the deductions from the trade valuation. Use both `features=max_offer_trade,max_offer` to receive this payload. Read more on how to set and update your [configuration here](/valuation/max-offer-configuration.md).

```json
    "max_offer": {
        "reconditioning": 1250,
        "profit_margin": 3116.04,
        "lot": 1000,
        "transport": 300,
        "admin": 150,
        "price": 20150.96
    }
```

**Bounds**

This feature will return the upper and lower bounds used as part of your valuation. Use `features=bounds` to receive this payload.&#x20;

```json
    "bounds": {
        "retail": {
            "lower": 24408.98,
            "upper": 28044.36
        },
        "trade": {
            "lower": 21072,
            "upper": 23322
        }
    }
```


---

# 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.autotek.my/valuation/valuation-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.
