The NHTSA vPIC (Vehicle Product Information Catalog) is the U.S. government’s authoritative database of vehicle manufacturers, makes, and models. This free lookup lets you browse it without writing code or signing up for an API key. Pick a vehicle type and a model year, choose a manufacturer, and see the complete model list NHTSA has on record — useful for dealers, fleet managers, insurers, and developers building VIN or vehicle tools.
How it works
The tool calls two keyless NHTSA vPIC endpoints directly from your browser:
GetMakesForVehicleType/<type>?format=json
GetModelsForMakeYear/make/<make>/modelyear/<year>?format=json
When you change the vehicle type, the first endpoint returns every manufacturer NHTSA links to that type, which populates the make dropdown. When you choose a make and year and press the button, the second endpoint returns the models for that exact make-and-year combination. Both lists are sorted alphabetically for easy scanning.
Tips and notes
- NHTSA only knows about makes and models that appear in its records, so very new, very old, or non-U.S.-market vehicles may be incomplete.
- Model availability is keyed to the exact model year. If a list comes back empty, try the year before or after.
- Because the call goes straight from your browser to NHTSA, the results are always live — there is no cached middle layer and nothing is stored on our side.