Api documentation

Api documentation

Get list of car makes

Spec: Make
 
 
v3 v2
 
 

Response format

JSON Response

{
	"makes": {array of objects},
	"makesCount": {integer}
}
Property Description Visibility
makes An array of objects describing car makes Edmunds, Partners, Public
makesCount Total number of car makes Edmunds, Partners, Public

Each element in the makes array follows this format:

{
	"id": {integer},
	"models": {array of objects},
	"name": {string},
	"niceName": {string}
}
Property Description Visibility
id The Edmunds ID for the car make Edmunds, Partners, Public
models List of models belonging to this car make (see below) Edmunds, Partners, Public
name The name of this car make Edmunds, Partners, Public
niceName URL-friendly car make name Edmunds, Partners, Public

Each element in the models array follows this format:

{
	"id": {string},
	"name":	{string},
	"niceName": {string},
	"states": {array of strings}, // only when view=full
	"years": {array of objects}
}
Property Description Visibility
id The Edmunds ID for the car model Edmunds, Partners, Public
name The name of this car model Edmunds, Partners, Public
niceName URL-friendly car model name Edmunds, Partners, Public
states The state of this model/year (e.g. NEW, USED, or FUTURE) Edmunds, Partners, Public
years List of model/years belonging to this car model (see below) Edmunds, Partners, Public

Each element in the years array follows this format:

{
	"id": {integer},
	"states": {array of strings}, // only when view=full
	"year": {integer}
}
Property Description Visibility
id The Edmunds ID for the car model/year Edmunds, Partners, Public
states The state of this model/year (e.g. NEW, USED, or FUTURE) Edmunds, Partners, Public
year The four digit year of this car model Edmunds, Partners, Public