Cars API
The Cars API provides detailed information on thousands of vehicle models from over a hundred automakers.
Available endpoints:
- /v1/carmakes - Get a list of all car manufacturers
- /v1/carmodels - Get all models for a specific manufacturer
- /v1/cartrims - Get all trims for a specific make and model
- /v1/cardetails - Get detailed specifications for a specific make, model, and trim
- /v1/cars (deprecated) - Get detailed car information by various parameters
For electric vehicle (EV)-specific data, see the Electric Vehicle API.
From 9,240 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 313ms | 349ms | 361ms | 703ms | 967ms |
Similar APIs
Didn't find what you were looking for? Suggest an improvement
/v1/carmakes GET
Business, Professional, or annual subscriptions only
https://api.api-ninjas.com/v1/carmakes
Returns a list of all car makes (manufacturers).
Parameters
yearoptionalFilter manufacturers by year (e.g.
2018).
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
Returns an array of car makes as strings (for example "Audi", "Toyota").
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/carmakesHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
/v1/carmodels GET
Business, Professional, or annual subscriptions only
https://api.api-ninjas.com/v1/carmodels
Returns a list of all car models for a given make (manufacturer). Use the /v1/carmakes endpoint to get the list of makes.
Parameters
makerequiredVehicle manufacturer (e.g.
audi).yearoptionalVehicle model year (e.g.
2018).
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
Returns an array of car model names as strings (for example "A4", "A4 Allroad").
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/carmodels?make=AudiHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
/v1/cartrims GET
Business, Professional, or annual subscriptions only
https://api.api-ninjas.com/v1/cartrims
Returns a list of all car trims for a given make and model.
Parameters
makerequiredVehicle manufacturer (e.g.
audi).modelrequiredVehicle model (e.g.
a4). You can find the list of models by calling the /v1/carmodels endpoint.limitoptionalHow many results to return. Must be between
1and100. Default is30.offsetoptionalNumber of results to skip. Used for pagination. Default is
0.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
Returns an array of car trim objects. Each object contains:
makeManufacturer name (for example
Audi).modelModel name (for example
A4).generationGeneration description (for example
1 generation (B5)).generation_year_beginFirst production year of this generation as a string.
generation_year_endLast production year of this generation as a string (may be
null).serieBody style / series (for example
Sedan,Avant wagon 5-doors).trimTrim name (for example
1.6 AT (101 hp)).trim_start_production_yearFirst production year for this trim (number or
null).trim_end_production_yearLast production year for this trim (number or
null).car_typeHigh-level type of vehicle (for example
car).
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/cartrims?make=Audi&model=A4Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
/v1/cardetails GET
Business, Professional, or annual subscriptions only
https://api.api-ninjas.com/v1/cardetails
Returns detailed specifications matching a given make, model, and trim combination.
Parameters
makerequiredVehicle manufacturer (e.g.
audi).modelrequiredVehicle model (e.g.
a4). You can find the list of models by calling the /v1/carmodels endpoint.trimrequiredVehicle trim (e.g.
1.6 AT (101 hp)). You can find the list of trims by calling the /v1/cartrims endpoint.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
Returns an array of detailed car objects. Each object contains top-level fields such as:
makeManufacturer name (for example
Audi).modelModel name (for example
A4).trimTrim identifier (for example
1.6 AT (101 hp)).start_production_yearFirst production year for this trim.
end_production_yearLast production year for this trim (may be
null).specificationsAn object containing detailed specifications such as engine power, fuel consumption, dimensions, weight, seating capacity, and many other attributes (see sample response).
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/cardetails?make=Audi&model=A4&trim=1.6%20AT%20(101%20hp)Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
/v1/cars GETDeprecated
https://api.api-ninjas.com/v1/cars
Get car data from given parameters. Returns a list of car models (and their information) that satisfy the parameters.
Parameters
makerequiredVehicle manufacturer (e.g.
audi).modelrequiredVehicle model (e.g.
a4). You can find the list of models by calling the /v1/carmodels endpoint.trimrequiredVehicle trim (e.g.
1.6 AT (101 hp)). You can find the list of trims by calling the /v1/cartrims endpoint.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/cars?make=Audi&model=A4Headers
X-Api-KeyLog in or sign up to get your API Key