Api documentation

Api documentation

Get List of Car Models for a Car Make

Spec: Model
 
 
v3 v2
 
 

Sample Request 1

Get the list of all new 2013 car models for Lexus

URL

  1. https://api.edmunds.com/api/vehicle/v2/lexus/models?fmt=json&api_key={api key}&state=new&year=2013

Response

  1. {
  2. "models": [
  3. {
  4. "id": "Lexus_CT_200h",
  5. "name": "CT 200h",
  6. "niceName": "ct200h",
  7. "years": [
  8. {
  9. "id": 200437666,
  10. "year": 2013,
  11. "styles": [
  12. {
  13. "id": 200437667,
  14. "name": "4dr Hatchback (1.8L 4cyl gas\/electric hybrid CVT)",
  15. "submodel": {
  16. "body": "Hatchback",
  17. "modelName": "CT 200h Hatchback",
  18. "niceName": "hatchback"
  19. },
  20. "trim": "Base"
  21. }
  22. ]
  23. }
  24. ]
  25. },
  26. ...
  27. {
  28. "id": "Lexus_RX_450h",
  29. "name": "RX 450h",
  30. "niceName": "rx450h",
  31. "years": [
  32. {
  33. "id": 200419837,
  34. "year": 2013,
  35. "styles": [
  36. {
  37. "id": 200419839,
  38. "name": "4dr SUV AWD (3.5L 6cyl gas\/electric hybrid CVT)",
  39. "submodel": {
  40. "body": "SUV",
  41. "modelName": "RX 450h SUV",
  42. "niceName": "suv"
  43. },
  44. "trim": "Base"
  45. },
  46. {
  47. "id": 200419838,
  48. "name": "4dr SUV (3.5L 6cyl gas\/electric hybrid CVT)",
  49. "submodel": {
  50. "body": "SUV",
  51. "modelName": "RX 450h SUV",
  52. "niceName": "suv"
  53. },
  54. "trim": "Base"
  55. }
  56. ]
  57. }
  58. ]
  59. }
  60. ],
  61. "modelsCount": 16
  62. }