Vehicle Data Demo

Make → model cascading selectors with vehicle type filtering. Live from the MatrixAPI vehicles endpoint.

Select a vehicle manufacturer to see available models for 1982. Use the checkboxes to filter by vehicle type.

Note: Vehicle API uses historical data for demonstration purposes. Cars and SUVs are selected by default.

0 makes available

0 models available

Selected Vehicle:

No vehicle selected yet

Response Times

Vehicles: ms

Cache Status

check_circle Cache Headers: 1 year
check_circle ETags: Enabled
// 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' }
});