GET api/Model?regyear={regyear}&make={make}

Get a list of all Models available for the specified Year and Make. The Model is the first word in the Variant description to make searching easier. Example - For a Q5 2.0 TDI QUATTRO STRONIC SPORT the Model will be Q5

Request Information

URI Parameters

NameDescriptionTypeAdditional information
regyear

string

Required

make

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of VehicleModels
NameDescriptionTypeAdditional information
Model

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Model": "sample string 1"
  },
  {
    "Model": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfVehicleModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VehicleValuesApi2">
  <VehicleModels>
    <Model>sample string 1</Model>
  </VehicleModels>
  <VehicleModels>
    <Model>sample string 1</Model>
  </VehicleModels>
</ArrayOfVehicleModels>