NHTSA
Decode US VINs and look up every registered make
NHTSA's vPIC service is the US government's catalog of vehicle makes, models, and VIN decoding. Fetch all manufacturers or decode a VIN into make, model, and body class straight from federal data. No key, and as a US Government work the data sits in the public domain.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://vpic.nhtsa.dot.gov/api/vehicles/GetAllMakes?format=json
{
"Count": 12283,
"Message": "Response returned successfully",
"SearchCriteria": null,
"Results": [
{
"Make_ID": 12858,
"Make_Name": "#1 ALPINE CUSTOMS"
}
]
}curl "https://vpic.nhtsa.dot.gov/api/vehicles/GetAllMakes?format=json"const res = await fetch("https://vpic.nhtsa.dot.gov/api/vehicles/GetAllMakes?format=json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://vpic.nhtsa.dot.gov/api/vehicles/GetAllMakes?format=json")
print(res.json())/vehicles/GetAllMakes?format=jsonPROBEDDecode US VINs and look up every registered make
/vehiclesVehicles — documented GET route.
/vehicles/1Vehicles details by ID (example: 1).
/vehicles?limit=10Vehicles — documented GET route.
/vehicles/search?q=testSearch by query parameters.
/vehicles/GetAllMakes?limit=5GetAllMakes — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
NHTSA: common questions
Is NHTSA free to use?
Yes — NHTSA is a free transport API. Free tier: Free, no key. Commercial use is allowed on the free tier.
Does NHTSA need an API key?
No — NHTSA needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call NHTSA from the browser?
Yes — NHTSA returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is NHTSA up right now?
NHTSA is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.