Predict a vehicle's market price using its VIN, along with a set of comparable active listings for market context. The prediction uses MarketCheck's ML-based pricing model, adjusted for mileage, location, and dealer type.
| Property | Value |
|---|---|
| Tool name | predict_price_with_comparables |
| Market | US |
| Required | VIN (17 characters) |
| API endpoint | GET /v2/predict/car/us/marketcheck_price/comparables |
| Parameter | Type | Default | Required | Description |
|---|---|---|---|---|
vin | string | — | Yes | 17-character Vehicle Identification Number |
miles | int | 50000 | No | Total miles driven on the vehicle |
dealer_type | string | "franchise" | No | "franchise" or "independent" |
zip | string | "50501" | No | ZIP code for location-based pricing (default: Des Moines, IA) |
city | string | — | No | City name — takes precedence over zip when combined with state |
state | string | — | No | 2-letter state code — required when using city |
is_certified | bool | false | No | Whether the vehicle is certified pre-owned (CPO) |
The location determines which comparable listings are used for the prediction:
city and state are provided, they take precedence over zipzip is provided (or neither), zip is used (default: 50501 — Des Moines, IA)The tool returns a JSON object containing:
predict_price_with_comparables(
vin="1HGCV1F34JA123456"
)
predict_price_with_comparables(
vin="1HGCV1F34JA123456",
miles=35000,
zip="90210",
dealer_type="franchise"
)
predict_price_with_comparables(
vin="1HGCV1F34JA123456",
miles=28000,
is_certified=true,
city="Los Angeles",
state="CA"
)
predict_price_with_comparables(
vin="1HGCV1F34JA123456",
miles=65000,
dealer_type="independent",
zip="77001"
)
For a comprehensive vehicle valuation, combine this tool with VIN decoding and history:
decode_vin_neovin(vin=...) to confirm vehicle specs and MSRPpredict_price_with_comparables(vin=..., miles=..., zip=...) for market value and comparablesget_car_history(vin=...) to review past listing prices and dealer activitySearch Past 90 Days
Full reference for the search_past_90_days tool — search expired and sold vehicle listings from the last 90 days in US and Canada for historical market analysis.
VIN Decode
Full reference for the decode_vin_neovin tool — decode any 17-character VIN to get comprehensive vehicle specifications, MSRP, installed options, features, and more.