{
"models": {array of objects},
"modelsCount": {integer}
}
Property | Description | Visibility |
---|---|---|
models | An array of objects describing car models | Edmunds, Partners, Public |
modelsCount | Total number of car models | Edmunds, Partners, Public |
Each element in the models
array follows this format:
{
"id": {integer},
"years":{array of objects},
"name": {string},
"niceName": {string},
"state": {array of strings}, // only when view=full
}
Property | Description | Visibility |
---|---|---|
id | The Edmunds ID for the car model | Edmunds, Partners, Public |
years | List of model years and styles (see below) | 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 car model (i.e. NEW, USED, FUTURE) | Edmunds, Partners, Public |
Each element in the years
array follows this format:
{
"id": {integer},
"states": {array of strings}, // only when view=full
"styles": {array of objects},
"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, FUTURE) | Edmunds, Partners, Public |
styles | List of styles belonging to this model year (see below) | Edmunds, Partners, Public |
year | The car year | Edmunds, Partners, Public |
Each element in the styles
array follows this format:
{
"id": {integer},
"name": {string},
"submodel": {object},
"trim": {string},
"states": {array of strings} // only when view=full
}
Property | Description | Visibility |
---|---|---|
id | The Edmunds ID for the car style | Edmunds, Partners, Public |
name | The car style name | Edmunds, Partners, Public |
submodel | The vehicle submodel (body and modelName info) | Edmunds, Partners, Public |
trim | The vehicle trim for this car style | Edmunds, Partners, Public |