# 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](https://devhub.autograb.com/nz-autograb-api-doc/valuation/max-offer-configuration).

```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](https://devhub.autograb.com/nz-autograb-api-doc/valuation/max-offer-configuration).

```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
        }
    }
```
