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.

Decode a Vehicle Identification Number (VIN) to retrieve comprehensive vehicle specifications using the NeoVIN decoder. This provides richer data than standard VIN decoders — including trim-level details, installed options, factory pricing, and feature lists.

Overview

PropertyValue
Tool namedecode_vin_neovin
RequiredVIN (17 characters)
API endpointGET /v2/decode/car/neovin/{vin}/specs
Data qualityIncludes trim, options, MSRP — beyond standard VIN decoders

Parameters

ParameterTypeDefaultRequiredDescription
vinstringYes17-character Vehicle Identification Number
include_genericboolfalseNoInclude generic vehicle data in the response

Response Data

The decoded response covers the full vehicle profile:

CategoryFields Included
IdentityYear, make, model, trim, version
EngineEngine type, displacement, cylinders, block, aspiration, horsepower, torque
TransmissionType, number of speeds
DrivetrainAWD, FWD, RWD, 4WD
DimensionsOverall height, length, width, wheelbase
WeightCurb weight, GVWR
Fuel EconomyCity MPG, highway MPG, combined MPG
PricingBase MSRP, destination charge
Installed OptionsFactory-installed packages and features for this specific VIN
Available OptionsOptional packages offered for the trim level
ColorsStandard and available interior/exterior colors
SeatingStandard seating capacity
PowertrainClassification (BEV, HEV, PHEV, Combustion, etc.)
ConfidenceData confidence ratings for decoded fields

Use Cases

Decode a VIN for full specs

decode_vin_neovin(
  vin="WDDGF8AB0DR298788"
)

Include generic vehicle data

decode_vin_neovin(
  vin="WDDGF8AB0DR298788",
  include_generic=true
)

Common Workflow

VIN decoding is typically the first step in vehicle research. Use the decoded specs to inform subsequent searches and valuations:

  1. Decode VINdecode_vin_neovin(vin=...) to confirm all specs, trim, options, and MSRP
  2. Predict pricepredict_price_with_comparables(vin=..., miles=...) for market valuation
  3. Check historyget_car_history(vin=...) for past listing data
  4. Find comparablessearch_active_cars(make=..., model=..., trim=..., year=...) using exact values from the decode

See Also