The **Vehicle Market Value API** provides access to a library of vehicle market value data.

The Vehicle Market Value API **estimates** the market value for **used** and **new** cars by **VIN** based on **millions** of historical vehicle sales stored in CarsXE's sales database.

With the assumption that sale prices are normally distributed, CarsXE's market value model estimates the "below market" and "above market" values within a distribution.

<ApiPlayground
  method="GET"
  path="/v2/marketvalue"
  params={[
    { name: "vin", required: true, example: "WBAFR7C57CC811956" },
    { name: "state", example: "CA" },
    { name: "mileage", example: "55000" },
    { name: "condition", options: ["excellent", "clean", "average", "rough"] },
  ]}
/>

---

<Row>
  <Col>

    This endpoint allows you to retrieve the **market value** for a specific vehicle based on its **VIN**.

    ## Required attributes

    <Properties>
      <Property name="key" type="string">
        Your CarsXE **API key**.
      </Property>
      <Property name="vin" type="string">
        The 17 character long vehicle identification number.
      </Property>
    </Properties>

    ## Optional attributes

    <Properties>
      <Property name="state" type="string">
        The **US state** of the vehicle to get the **market value** for.
      </Property>
      <Property name="mileage" type="number">
        The **current mileage** of the vehicle used to adjust the market value. Must be a **valid numeric value**.
      </Property>
      <Property name="condition" type="string">
        The **overall condition** of the vehicle. Accepted values are:
        <code>excellent</code>, <code>clean</code>, <code>average</code>, or <code>rough</code>.
      </Property>
    </Properties>

     ---

    ## Response attributes

    <Properties>
      <Property name="uid" type="string">
        A **unique identifier** for for the vehicle.
      </Property>
      <Property name="input" type="object">
        A map of the input: "**vin**", "**state**", "**country**" of the vehicle.
      </Property>
      <Property name="publish_date" type="string">
        The **date** when the vehicle **market value** data was last published or **updated**.
      </Property>
      <Property name="data_freq" type="string">
        The **frequency of data updates**.
        It indicates that the market value data provided by the API is updated **once per day.**
      </Property>
      <Property name="state" type="string">
        The state where the vehicle's market value is being assessed, in this case, **California**.
      </Property>
      <Property name="country" type="string">
        The country context for the valuation, in this case, the **United States**.
      </Property>
      <Property name="uvc" type="string">
        The **unique vehicle code**.
        It is a unique identifier assigned to a specific vehicle configuration or model. This code helps in accurately identifying and retrieving precise market value data for that particular vehicle.
      </Property>
      <Property name="group_num" type="string">
        A **group identifier** used to classify or associate the vehicle with a specific category, market segment, or data grouping.
        e.g., sedans, SUVs.
      </Property>
      <Property name="model_year" type="string">
        The **manufacturing year** of the vehicle model being assessed. This information is crucial as it directly impacts the vehicle's market value, reflecting depreciation, demand, and historical relevance in pricing calculations.
      </Property>
      <Property name="make" type="string">
        The **brand** or **manufacturer** of the vehicle, in this case, **Lexus**.
      </Property>
      <Property name="model" type="string">
        The **model** of the vehicle, which is a particular version of the Lexus brand, here being the **RX 350**.
      </Property>
      <Property name="series" type="string">
        The series associated with the vehicle.
      </Property>
      <Property name="style" type="string">
        Describes the vehicle **style** or **body type**. In this case:
        * **4D** refers to a four-door vehicle.
        * **SUV** indicates the vehicle type is a Sport Utility Vehicle.
        * **AWD** stands for All-Wheel Drive, indicating the type of drivetrain.
      </Property>
      <Property name="mileage_cat" type="string">
        A **category** for the vehicle's **mileage**, could represent a specific mileage **range** or **classification**.
      </Property>
      <Property name="class_code" type="string">
        A **class code** that categorizes the vehicle into a specific **segment** or **type**.
      </Property>
      <Property name="class_name" type="string">
        This is a human-readable description of the **vehicle's class**. It specifies that the vehicle is categorized as a **large luxury crossover/SUV**, helping to describe the vehicle's type or market segment.
      </Property>
      <Property name="description_score" type="string">
        A **rating** or **score** based on the vehicle's description quality or completeness.
      </Property>
      <Property name="first_values_flag" type="string">
        Indicates whether the vehicle's market value data is the **first set of values** being used or provided. In this case, it's set to **false**, meaning the data may not be the initial set or it has been updated or revisited.
      </Property>
      <Property name="risk_score" type="string">
        A **risk score** associated with the vehicle's market value or condition. A risk score might assess factors such as potential for accidents, fraud, or reliability concerns.
      </Property>
      <Property name="whole_xclean" type="object">
        **Excellent** condition, typically with no significant wear.
      </Property>
      <Property name="whole_clean" type="object">
        **Good** condition, with minor wear.
      </Property>
      <Property name="whole_avg" type="object">
        **Average** condition, showing moderate wear.
      </Property>
      <Property name="whole_rough" type="object">
        **Poor** condition, showing significant wear or issues.
      </Property>

        For each category (e.g., "whole_xclean"), there are further subfields:
        * **base_whole_xclean**: The base value of the vehicle in **excellent** condition, **before adjustments** (e.g., mileage or regional factors).
        * **mileage_whole_xclean**: Adjustments for mileage (if any).
        * **add_deduct_whole_xclean**: Any other **additions** or **deductions** (for special features or damages).
        * **regional_whole_xclean**: Adjustments based on regional market differences.
        * **adjusted_whole_xclean**: The final, **adjusted market value** for the vehicle.

      <Property name="retail_xclean" type="object">
        The **retail price** of a vehicle in **excellent** condition (no significant wear, like new or almost new).
      </Property>
      <Property name="retail_clean" type="object">
        The **retail price** for a vehicle in **good** condition (minor wear and tear, but well-maintained).
      </Property>
      <Property name="retail_avg" type="object">
        The **retail price** of a vehicle in **average** condition (moderate wear, typically for a used vehicle).
      </Property>
      <Property name="retail_rough" type="object">
        The **retail price** for a vehicle in **poor** condition (significant wear and tear, possible mechanical or cosmetic issues).
      </Property>
      <Property name="trade_in_clean" type="object">
        The **trade-in price** for a vehicle in **good** condition (minor wear and tear, well-maintained, ready for resale or continued use).
      </Property>
      <Property name="trade_in_avg" type="object">
        The **trade-in price** for a vehicle in **average** condition (moderate wear, typical for a used vehicle with normal signs of use).
      </Property>
      <Property name="trade_in_rough" type="object">
        The **trade-in price** for a vehicle in **poor** condition (significant wear, potential mechanical or cosmetic issues, or higher depreciation).
      </Property>
      <Property name="msrp" type="string">
        Manufacturer’s Suggested Retail Price (MSRP) is the **recommended selling price** set by the vehicle manufacturer for the vehicle before any dealer discounts or additions. It is often used as a starting point for pricing.
      </Property>
      <Property name="retail_equipped" type="string">
        The **retail price** of the vehicle **equipped** with all available options and features, including any add-ons, upgrades, or packages.
      </Property>
      <Property name="price_includes" type="string">
        This describes the **options** or **features** that are **included** in the vehicle’s price. It lists the additional equipment or features that are part of the specified price.
        * **AC**: Air Conditioning
        * **AT**: Automatic Transmission
        * **LTH**: Leather Upholstery
        * **SR**: Sunroof
      </Property>
      <Property name="wheel_base" type="string">
        The wheelbase is the **distance** (106.9 inches) between the front and rear axles of the vehicle. It can affect the vehicle's handling, ride quality, and interior space.
      </Property>
      <Property name="tire_size" type="string">
        The tire size indicates the **dimensions** of the tires installed on the vehicle. This includes:
        * **225**: The tire width in millimeters.
        * **65**: The aspect ratio (the height of the tire sidewall as a percentage of the width).
        * **SR**: The speed rating (indicating the maximum speed the tire is rated for).
        * **17**: The diameter of the tire in inches.
      </Property>
      <Property name="gvw" type="string">
         **Gross Vehicle Weight** (GVW) is the total weight (5,245 pounds) of the vehicle, **including its maximum load** (passengers, cargo, etc.).
      </Property>
      <Property name="seat_cap" type="string">
        The **seating capacity** indicates the **number of passengers** the vehicle can accommodate.
      </Property>
      <Property name="fuel_type" type="string">
        The **type** of **fuel** the vehicle uses.
      </Property>
      <Property name="fuel_cap" type="string">
        The **fuel capacity** refers to the volume of fuel the vehicle's tank can hold, usually in gallons.
      </Property>
      <Property name="fuel_delivery" type="string">
         Fuel **delivery system** type used by the vehicle. MPI stands for **Multi-Point Fuel Injection**, which is a type of fuel injection system where each cylinder has its own injector, allowing more precise control of fuel delivery.
      </Property>
      <Property name="hwy_mpg" type="string">
        **Highway Miles Per Gallon** (MPG) represents the vehicle's fuel efficiency on highways or at constant speeds.
      </Property>
      <Property name="city_mpg" type="string">
        **City Miles Per Gallon** (MPG) indicates the vehicle’s fuel efficiency in urban or stop-and-go driving conditions.
      </Property>
      <Property name="engine_description" type="string">
        This field provides a description of the vehicle’s engine.
        * **3.5L**: The **engine’s displacement**, meaning it has a 3.5-liter engine capacity.
        * **V6**: The engine has six **cylinders** arranged in a V-shape.
        * **SFI**: **Sequential Fuel Injection**, a system where fuel is injected into each cylinder at the appropriate time.
        * **DOHC**: Double Overhead Camshaft, indicating the engine has two camshafts controlling the intake and exhaust valves for better performance.
      </Property>
      <Property name="cylinders" type="string">
        The number of **cylinders** in the engine.
      </Property>
      <Property name="engine_displacement" type="string">
        The **engine displacement** refers to the total volume of all the cylinders in the engine, often measured in liters.
      </Property>
      <Property name="base_hp" type="string">
        The base horsepower of the engine, which measures its maximum power output.
        * **270**: The engine produces 270 horsepower at the specified RPM.
        * **6200**: The engine reaches 270 horsepower at 6,200 RPM (revolutions per minute).
      </Property>
      <Property name="taxable_hp" type="string">
        The **taxable horsepower** refers to the engine’s power rating used for tax or registration purposes, which might be calculated differently from the base horsepower.
      </Property>
      <Property name="torque" type="string">
        The engine’s **torque** is a measure of its **rotational force**, important for acceleration and towing capacity.
        * **251**: The engine generates 251 lb-ft of torque.
        * **4700**: This torque is available at 4,700 **RPM**.
      </Property>
      <Property name="transmission" type="string">
        The type of transmission the vehicle uses. The vehicle has an **automatic** transmission, as indicated by "**A**".
      </Property>
      <Property name="drivetrain" type="string">
        The vehicle’s **drivetrain** indicates how power is delivered to the wheels. The vehicle has **All-Wheel Drive** (AWD), meaning power is distributed to all four wheels for better traction, especially in poor road conditions.
      </Property>
      <Property name="num_gears" type="string">
        The **number of gears** in the vehicle's transmission.
      </Property>
      <Property name="ext_doors" type="string">
        The number of **exterior doors** the vehicle has. The vehicle has **4 doors**, which is typical for a sedan or a 4-door SUV.
      </Property>
      <Property name="basic_warranty" type="string">
        The basic warranty for the vehicle, covering **repairs** or **defects** within a **specified time** or **mileage** limit.
        * **4-year/50,000-mile**: The warranty lasts for 4 years or 50,000 miles, whichever comes first.
        * **Limited**: The warranty is limited, meaning it may not cover all components or may have exclusions.
      </Property>
      <Property name="add_deduct_list" type="object">
        Represents a list of **additions** or **deductions** based on specific options or features in the vehicle, and how those features impact its market value.
        * **uoc**: This is a **unique identifier** for the option or feature (UOC stands for Unique Option Code).
        * **name**: The name of the option or feature being added or deducted.
        * **xclean**, **clean**, **avg**, **rough**:
          These represent how the feature or option affects the vehicle’s value depending on its condition. These values are specific adjustments to the market value based on the condition of the vehicle:
            * **xclean**: Adjusted value for a vehicle in **extra clean** condition.
            * **clean**: Adjusted value for a vehicle in **clean** condition.
            * **avg**: Adjusted value for a vehicle in **average** condition.
            * **rough**: Adjusted value for a vehicle in **rough** condition.
        * **auto**: Indicates if the feature is **automatic** (whether it is part of the vehicle's default set of features or not).
        * **resid12**, **resid24**, **resid30**, **resid36**, **resid42**, **resid48**, **resid60**, **resid72**:
            * These represent the **residual values (depr**eciation or remaining value) for the option at different time periods (in months). These values are used for calculating lease residuals or depreciation over time.
      </Property>
      <Property name="model_number_list" type="array">
        This is a list of model numbers associated with the vehicle.
      </Property>
      <Property name="mileage_list" type="array of objects">
        Represents a list of **additions** or **deductions** based on mileage / kilometer range (US / Canada) at the vehicle’s respective condition.
        * **model_year**: This is model year of the vehicle.
        * **range_begin**: The range at which these price adjustments apply.
        * **range_end**: The range at which these price adjustments end.
        * **xclean**, **clean**, **avg**, **rough**:
          These represent how the feature or option affects the vehicle’s value depending on its condition. These values are specific adjustments to the market value based on the condition of the vehicle:
            * **xclean**: Adjusted value for a vehicle in **extra clean** condition.
            * **clean**: Adjusted value for a vehicle in **clean** condition.
            * **avg**: Adjusted value for a vehicle in **average** condition.
            * **rough**: Adjusted value for a vehicle in **rough** condition.
      </Property>
      <Property name="retail" type="string">
        The **retail value** of the vehicle, which represents the **expected** price if the vehicle is sold to a **consumer**, typically by a **dealership**.
      </Property>
      <Property name="trade_in" type="string">
        The **trade-in value** of the vehicle, which is how much a dealership would offer to accept the vehicle as a trade-in for purchasing a different vehicle.
      </Property>
      <Property name="rough_trade_in" type="string">
        The **rough trade-in value** of the vehicle, which represents the lowest price a dealership would offer for a vehicle in **poor condition** (rough).
      </Property>
      <Property name="average_trade_in" type="string">
        The **average trade-in value**, which represents a middle ground or average trade-in price for a vehicle in **average condition**.
      </Property>
      <Property name="loan_value" type="string">
        The **loan value** of the vehicle, which is the estimated amount the vehicle would be financed for, typically used by **banks** or **financial institutions** for vehicle loans.
      </Property>
      <Property name="trade_in_values" type="array">
        This field would typically contain additional details related to trade-in values **over time** or **across different conditions**.
      </Property>
      <Property name="auction_values" type="object">
        The **auction values** represent the price range that the vehicle could sell for at an auction, which is typically lower than retail but higher than trade-in values. Auction prices depend on the vehicle's condition and demand.
        * **low_auction_value**: The lowest expected price the vehicle could sell for at an auction, in this case, $3,150.
        * **average_auction_value**: The average price the vehicle is expected to sell for at an auction, in this case, $4,400.
        * **high_auction_value**: The highest expected price the vehicle could sell for at an auction, in this case, $5,675.
        * **date_range**: The date range during which the auction values are applicable. In this case, the values are for 12/18/2024.
      </Property>
    </Properties>


    <FAQ faqs={[{ question: "What VINs can I use for testing?", answer: <>You may be use the following VINs for test:<ul><li><code>JN1EV7AP6JM355294</code></li><li><code>WBAFR7C57CC811956</code></li></ul></>},{question: "Is the Vehicle Market Value API included in the free trial?", answer: <>No, The Vehicle Market Value API is not included in the 7-day free trial. For more information visit our <a href='/pricing'>pricing</a> page.</>}]} hidePadding />

  </Col>
  <Col sticky>

    <CodeGroup title="Request" tag="GET" label="/v2/marketvalue">
        ```bash
        curl -G https://api.carsxe.com/v2/marketvalue \
          -d key=CARSXE_API_KEY \
          -d vin=WBAFR7C57CC811956
        ```

        ```js
        import { CarsXE } from "carsxe-api";

        const carsxe = new CarsXE("CARSXE_API_KEY");
        const vin = "WBAFR7C57CC811956";

        try {
          const marketValue = await carsxe.marketvalue({ vin });
          console.log(marketValue);
        } catch (error) {
          console.error(error);
        }
        ```

        ```python
        import asyncio
        from carsxe_api import CarsXE

        carsxe = CarsXE('CARSXE_API_KEY')
        vin = 'WBAFR7C57CC811956'

        try:
            marketValue = asyncio.run(carsxe.market_value({"vin": vin}))
            print(marketValue)
        except Exception as e:
            print(f"Error: {e}")
        ```

        ```php
        <?php
        require_once __DIR__ . '/vendor/autoload.php';
        use CarsxeDeveloper\Carsxe\Carsxe;

        $API_KEY = 'CARSXE_API_KEY';
        $carsxe = new Carsxe($API_KEY);
        $vin = 'WBAFR7C57CC811956';

        try {
            $marketValue = $carsxe->marketValue(['vin' => $vin]);
            print_r($marketValue);
        } catch (Exception $error) {
            echo "Error: " . $error->getMessage();
        }
        ```

        ```ruby
        require 'carsxe'

        API_KEY = 'CARSXE_API_KEY'
        carsxe = Carsxe::CarsXE.new(api_key: API_KEY)
        vin = 'WBAFR7C57CC811956'

        begin
          marketValue = carsxe.market_value('vin' => vin)
          puts marketValue
        rescue StandardError => error
          puts "Error: #{error.message}"
        end
        ```

        ```go
        package main

        import (
        	"fmt"
        	"github.com/carsxe/carsxe-go-package"
        )

        func main() {
        	client := carsxe.New("CARSXE_API_KEY")
        	vin := "WBAFR7C57CC811956"
        	marketValue := client.MarketValue(map[string]string{"vin": vin})
        	fmt.Println(marketValue)
        }
        ```

        ```java
        import io.github.carsxe.CarsXE;
        import java.util.Map;
        import java.util.HashMap;

        public class Main {
            public static void main(String[] args) {
                CarsXE carsxe = new CarsXE("CARSXE_API_KEY");
                Map<String, String> params = new HashMap<>();
                params.put("vin", "WBAFR7C57CC811956");
                try {
                    Map<String, Object> marketValue = carsxe.marketvalue(params);
                    System.out.println(marketValue);
                } catch (Exception e) {
                    System.err.println("Error: " + e.getMessage());
                }
            }
        }
        ```

        ```swift
        import carsxe

        let carsxe = CarsXE(apiKey: "CARSXE_API_KEY")
        let vin = "WBAFR7C57CC811956"

        do {
            let marketValue = try carsxe.marketValue(["vin": vin])
            print(marketValue)
        } catch {
            print("Error: \(error)")
        }
        ```

        ```csharp
        using carsxe;
        using System;
        using System.Collections.Generic;
        using System.Threading.Tasks;

        class Program
        {
            static async Task Main(string[] args)
            {
                string API_KEY = "CARSXE_API_KEY";
                CarsXE carsxe = new CarsXE(API_KEY);
                string vin = "WBAFR7C57CC811956";
                try
                {
                    var marketValue = await carsxe.MarketValue(new Dictionary<string, string> { { "vin", vin } });
                    Console.WriteLine(marketValue);
                }
                catch (Exception ex)
                {
                    Console.WriteLine($"Error: {ex.Message}");
                }
            }
        }
        ```
    </CodeGroup>
    <CodeGroup title="Response">
    ```json showLineNumbers {{ title: 'Response' }}
    {
        "uid": "FDE60872",
        "input": {
            "vin": "WBAFR7C57CC811956",
            "country": "US"
        },
        "publish_date": "4/8/2025",
        "data_freq": "D",
        "state": "NT",
        "country": "US",
        "uvc": "2012100134",
        "group_num": "4265",
        "model_year": "2012",
        "make": "BMW",
        "model": "5-Series",
        "series": "535i",
        "style": "4D Sedan",
        "mileage_cat": "G",
        "class_code": "F",
        "class_name": "Luxury Car",
        "description_score": "",
        "first_values_flag": false,
        "risk_score": "",
        "whole_xclean": {
            "base_whole_xclean": 6500,
            "mileage_whole_xclean": 0,
            "add_deduct_whole_xclean": 0,
            "regional_whole_xclean": 0,
            "adjusted_whole_xclean": 6500
        },
        "whole_clean": {
            "base_whole_clean": 5300,
            "mileage_whole_clean": 0,
            "add_deduct_whole_clean": 0,
            "regional_whole_clean": 0,
            "adjusted_whole_clean": 5300
        },
        "whole_avg": {
            "base_whole_avg": 3675,
            "mileage_whole_avg": 0,
            "add_deduct_whole_avg": 0,
            "regional_whole_avg": 0,
            "adjusted_whole_avg": 3675
        },
        "whole_rough": {
            "base_whole_rough": 2100,
            "mileage_whole_rough": 0,
            "add_deduct_whole_rough": 0,
            "regional_whole_rough": 0,
            "adjusted_whole_rough": 2100
        },
        "retail_xclean": {
            "base_retail_xclean": 10775,
            "mileage_retail_xclean": 0,
            "add_deduct_retail_xclean": 0,
            "regional_retail_xclean": 0,
            "adjusted_retail_xclean": 10775
        },
        "retail_clean": {
            "base_retail_clean": 9325,
            "mileage_retail_clean": 0,
            "add_deduct_retail_clean": 0,
            "regional_retail_clean": 0,
            "adjusted_retail_clean": 9325
        },
        "retail_avg": {
            "base_retail_avg": 6975,
            "mileage_retail_avg": 0,
            "add_deduct_retail_avg": 0,
            "regional_retail_avg": 0,
            "adjusted_retail_avg": 6975
        },
        "retail_rough": {
            "base_retail_rough": 5150,
            "mileage_retail_rough": 0,
            "add_deduct_retail_rough": 0,
            "regional_retail_rough": 0,
            "adjusted_retail_rough": 5150
        },
        "trade_in_clean": {
            "base_trade_in_clean": 5395,
            "mileage_trade_in_clean": 0,
            "add_deduct_trade_in_clean": 0,
            "regional_trade_in_clean": 0,
            "adjusted_trade_in_clean": 5395
        },
        "trade_in_avg": {
            "base_trade_in_avg": 3770,
            "mileage_trade_in_avg": 0,
            "add_deduct_trade_in_clean": 0,
            "regional_trade_in_clean": 0,
            "adjusted_trade_in_clean": 5395
        },
        "trade_in_rough": {
            "base_trade_in_rough": 2015,
            "mileage_trade_in_rough": 0,
            "add_deduct_trade_in_rough": 0,
            "regional_trade_in_rough": 0,
            "adjusted_trade_in_rough": 2015
        },
        "region2": 0,
        "region3": 0,
        "region4": -50,
        "region5": 0,
        "region6": 0,
        "msrp": 52500,
        "retail_equipped": 55375,
        "price_includes": "AC AT LTH SR",
        "wheel_base": 116.9,
        "tire_size": "245/45R18",
        "gvw": 3913,
        "seat_cap": "5",
        "fuel_type": "Gas",
        "fuel_cap": "18.5",
        "fuel_delivery": "Direct injection",
        "hwy_mpg": "28",
        "city_mpg": "19",
        "engine_description": "3.0L I-6 DI DOHC T/C",
        "cylinders": "6",
        "engine_displacement": "3.0L",
        "engine_turbocharged": "Turbocharg",
        "base_hp": "306 @ 5800",
        "taxable_hp": 26.3,
        "torque": "400 @ 5000",
        "transmission": "A",
        "drivetrain": "RWD",
        "num_gears": "6",
        "ext_doors": "4",
        "airbags": "Side Curtain; Supplemental Restraint System",
        "basic_warranty": "4-year/50,000-mile, Limited",
        "road_assist_warranty": "4-year/Unlimited-mile",
        "add_deduct_list": [
            {
                "uoc": "N5",
                "name": "Navigation System",
                "xclean": 0,
                "clean": 0,
                "avg": 0,
                "rough": 0,
                "auto": "N",
                "resid12": 0,
                "resid24": 0,
                "resid30": 0,
                "resid36": 0,
                "resid42": 0,
                "resid48": 0,
                "resid60": 0,
                "resid72": 0
            },
            {
                "uoc": "41",
                "name": "Sport Package",
                "xclean": 550,
                "clean": 550,
                "avg": 550,
                "rough": 550,
                "auto": "N",
                "resid12": 0,
                "resid24": 0,
                "resid30": 0,
                "resid36": 0,
                "resid42": 0,
                "resid48": 0,
                "resid60": 0,
                "resid72": 0
            },
            {
                "uoc": "MS",
                "name": "M Sport Package",
                "xclean": 600,
                "clean": 600,
                "avg": 600,
                "rough": 600,
                "auto": "N",
                "resid12": 0,
                "resid24": 0,
                "resid30": 0,
                "resid36": 0,
                "resid42": 0,
                "resid48": 0,
                "resid60": 0,
                "resid72": 0
            },
            {
                "uoc": "05",
                "name": "w/o Auto Trans",
                "xclean": -650,
                "clean": -650,
                "avg": -650,
                "rough": -650,
                "auto": "N",
                "resid12": 0,
                "resid24": 0,
                "resid30": 0,
                "resid36": 0,
                "resid42": 0,
                "resid48": 0,
                "resid60": 0,
                "resid72": 0
            }
        ],
        "model_number_list": [
            "125C"
        ],
        "mileage_list": [
            {
                "model_year": "2012",
                "range_begin": 1,
                "range_end": 9000,
                "xclean": 2600,
                "clean": 2750,
                "avg": 2925,
                "rough": 2925,
                "finadv": 2675,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 9001,
                "range_end": 21000,
                "xclean": 2425,
                "clean": 2600,
                "avg": 2750,
                "rough": 2925,
                "finadv": 2500,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 21001,
                "range_end": 33000,
                "xclean": 2275,
                "clean": 2425,
                "avg": 2600,
                "rough": 2750,
                "finadv": 2350,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 33001,
                "range_end": 45000,
                "xclean": 2100,
                "clean": 2275,
                "avg": 2425,
                "rough": 2600,
                "finadv": 2175,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 45001,
                "range_end": 57000,
                "xclean": 1950,
                "clean": 2100,
                "avg": 2275,
                "rough": 2425,
                "finadv": 2025,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 57001,
                "range_end": 69000,
                "xclean": 1850,
                "clean": 1950,
                "avg": 2100,
                "rough": 2275,
                "finadv": 1900,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 69001,
                "range_end": 81000,
                "xclean": 1625,
                "clean": 1850,
                "avg": 1950,
                "rough": 2100,
                "finadv": 1725,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 81001,
                "range_end": 88000,
                "xclean": 1400,
                "clean": 1625,
                "avg": 1850,
                "rough": 1950,
                "finadv": 1500,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 88001,
                "range_end": 95000,
                "xclean": 1150,
                "clean": 1400,
                "avg": 1625,
                "rough": 1850,
                "finadv": 1275,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 95001,
                "range_end": 102000,
                "xclean": 925,
                "clean": 1150,
                "avg": 1400,
                "rough": 1625,
                "finadv": 1050,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 102001,
                "range_end": 109000,
                "xclean": 700,
                "clean": 925,
                "avg": 1150,
                "rough": 1400,
                "finadv": 825,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 109001,
                "range_end": 116000,
                "xclean": 600,
                "clean": 700,
                "avg": 925,
                "rough": 1150,
                "finadv": 650,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 116001,
                "range_end": 123000,
                "xclean": 500,
                "clean": 600,
                "avg": 700,
                "rough": 925,
                "finadv": 550,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 123001,
                "range_end": 126000,
                "xclean": 400,
                "clean": 500,
                "avg": 600,
                "rough": 700,
                "finadv": 450,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 126001,
                "range_end": 129000,
                "xclean": 300,
                "clean": 400,
                "avg": 500,
                "rough": 600,
                "finadv": 350,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 129001,
                "range_end": 132000,
                "xclean": 200,
                "clean": 300,
                "avg": 400,
                "rough": 500,
                "finadv": 250,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 132001,
                "range_end": 135000,
                "xclean": 100,
                "clean": 200,
                "avg": 300,
                "rough": 400,
                "finadv": 150,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 135001,
                "range_end": 138000,
                "xclean": 0,
                "clean": 100,
                "avg": 200,
                "rough": 300,
                "finadv": 50,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 138001,
                "range_end": 141000,
                "xclean": -100,
                "clean": 0,
                "avg": 100,
                "rough": 200,
                "finadv": -50,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 141001,
                "range_end": 144000,
                "xclean": -200,
                "clean": -100,
                "avg": 0,
                "rough": 100,
                "finadv": -150,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 144001,
                "range_end": 147000,
                "xclean": -300,
                "clean": -200,
                "avg": -100,
                "rough": 0,
                "finadv": -250,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 147001,
                "range_end": 150000,
                "xclean": -400,
                "clean": -300,
                "avg": -200,
                "rough": -100,
                "finadv": -350,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 150001,
                "range_end": 153000,
                "xclean": -500,
                "clean": -400,
                "avg": -300,
                "rough": -200,
                "finadv": -450,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 153001,
                "range_end": 156000,
                "xclean": -600,
                "clean": -500,
                "avg": -400,
                "rough": -300,
                "finadv": -550,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 156001,
                "range_end": 159000,
                "xclean": -700,
                "clean": -600,
                "avg": -500,
                "rough": -400,
                "finadv": -650,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 159001,
                "range_end": 162000,
                "xclean": -925,
                "clean": -700,
                "avg": -600,
                "rough": -500,
                "finadv": -825,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 162001,
                "range_end": 165000,
                "xclean": -1150,
                "clean": -925,
                "avg": -700,
                "rough": -600,
                "finadv": -1050,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 165001,
                "range_end": 172000,
                "xclean": -1400,
                "clean": -1150,
                "avg": -925,
                "rough": -700,
                "finadv": -1275,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 172001,
                "range_end": 179000,
                "xclean": -1625,
                "clean": -1400,
                "avg": -1150,
                "rough": -925,
                "finadv": -1500,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 179001,
                "range_end": 186000,
                "xclean": -1850,
                "clean": -1625,
                "avg": -1400,
                "rough": -1150,
                "finadv": -1725,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 186001,
                "range_end": 193000,
                "xclean": -2075,
                "clean": -1850,
                "avg": -1625,
                "rough": -1400,
                "finadv": -1950,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 193001,
                "range_end": 200000,
                "xclean": -2300,
                "clean": -2075,
                "avg": -1850,
                "rough": -1625,
                "finadv": -2200,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 200001,
                "range_end": 207000,
                "xclean": -2700,
                "clean": -2300,
                "avg": -2075,
                "rough": -1850,
                "finadv": -2500,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 207001,
                "range_end": 214000,
                "xclean": -2925,
                "clean": -2700,
                "avg": -2300,
                "rough": -2075,
                "finadv": -2825,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 214001,
                "range_end": 226000,
                "xclean": -3150,
                "clean": -2925,
                "avg": -2700,
                "rough": -2300,
                "finadv": -3050,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 226001,
                "range_end": 238000,
                "xclean": -3375,
                "clean": -3150,
                "avg": -2925,
                "rough": -2700,
                "finadv": -3275,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 238001,
                "range_end": 250000,
                "xclean": -3600,
                "clean": -3375,
                "avg": -3150,
                "rough": -2925,
                "finadv": -3500,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 250001,
                "range_end": 262000,
                "xclean": -3825,
                "clean": -3600,
                "avg": -3375,
                "rough": -3150,
                "finadv": -3725,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 262001,
                "range_end": 274000,
                "xclean": -3825,
                "clean": -3825,
                "avg": -3600,
                "rough": -3375,
                "finadv": -3825,
                "mileage_cat": "G"
            },
            {
                "model_year": "2012",
                "range_begin": 274001,
                "range_end": 999999,
                "xclean": -3825,
                "clean": -3825,
                "avg": -3825,
                "rough": -3600,
                "finadv": -3825,
                "mileage_cat": "G"
            }
        ],
        "retail": 6975,
        "trade_in": 5395,
        "rough_trade_in": 2015,
        "average_trade_in": 3770,
        "loan_value": 9325,
        "trade_in_values": [],
        "auction_values": {
            "low_auction_value": 2100,
            "average_auction_value": 3675,
            "high_auction_value": 5300,
            "date_range": "4/8/2025"
        }
    }
    ```
    </CodeGroup>

  </Col>
</Row>
