Api documentation

Api documentation

Get details for a specific car make/brand

Spec: Make
 
 
v3 v2
 
 

Response format

JSON Response

  1. {
  2. "id": {integer},
  3. "models": {array of objects},
  4. "name": {string},
  5. "niceName": {string}
  6. }
Property Description Visibility
id The Edmunds ID for the car make/brand 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/brand name Edmunds, Partners, Public

Each element in the models array follows this format:

  1. {
  2. "id": {string},
  3. "name": {string},
  4. "niceName": {string},
  5. "states": {array of strings}, // only when view=full
  6. "years": {array of objects}
  7. }
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:

  1. {
  2. "id": {integer},
  3. "states": {array of strings}, // only when view=full
  4. "year": {integer}
  5. }
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