NHTSA VPIC · MY 1982

Vehicle picker

Pick a manufacturer to load its 1982 models straight from /api/v1/vehicles. The type checkboxes re-filter the model list on every change.

Model year is pinned to 1982 for demonstration. Cars and SUVs are selected by default.

INPUT · MAKE → MODEL

0 makes available

0 models available

Filter by type

RESULT · SELECTED VEHICLE

No vehicle selected yet

TELEMETRY · ROUND TRIP

Vehicles: ms

CACHE CONTRACT

  • Cache headers: 1 year, immutable
  • ETags: enabled
GET /api/v1/vehicles X-API-Key required
// Requires API key
const res = await fetch('https://matrixapi.dev/api/v1/vehicles', {
  headers: { 'X-API-Key': 'your_api_key_here' }
});
const { vehicles } = await res.json();

// Models for a specific make and year
const models = await fetch('https://matrixapi.dev/api/v1/vehicles/1982/ford', {
  headers: { 'X-API-Key': 'your_api_key_here' }
});