Api documentation

Api documentation

Get details for a specific car make/brand v3

Spec: Make
 
 
v3 v2
 
 

Sample Request 1

Get the list of models and model/year IDs for NEW Lexus cars

URL

  1. http://api.edmunds.com/api/vehicle/v3/lexus?api_key={api key}&state=NEW

Response

  1. {
  2. "id": 200001623,
  3. "name": "Lexus",
  4. "niceName": "lexus",
  5. "models":[
  6. {
  7. "id": "Lexus_CT_200h",
  8. "name": "CT 200h",
  9. "niceName": "ct200h",
  10. "years":[
  11. {
  12. "id": 200437666,
  13. "year": 2013,
  14. "states": ["NEW"]
  15. },
  16. ...
  17. {
  18. "id": 100537990,
  19. "year": 2012,
  20. "states": ["USED"]
  21. }
  22. ],
  23. "states": [
  24. "NEW",
  25. "USED",
  26. "NEW_USED"
  27. ]
  28. },
  29. ...
  30. {
  31. "id": "Lexus_ES_350",
  32. "name": "ES 350",
  33. "niceName": "es350",
  34. "years": [
  35. {
  36. "id": 2013,
  37. "year": 100539469,
  38. "states":["USED", "NEW"]
  39. }
  40. ],
  41. "states": [
  42. "NEW",
  43. "USED",
  44. "NEW_USED"
  45. ]
  46. }
  47. ]
  48. }