Moto API Now in Beta

Access structured data on common car complaints by year, make, and model. Empower your automotive applications with comprehensive vehicle issue insights.

Sign Up for Beta Access

Sample API Response

{
  "year": "2022",
  "make": "Toyota",
  "model": "Camry",
  "complaints": [
    {
      "id": "12345",
      "issueCategory": "Engine",
      "impact": "Vehicle Stalling",
      "symptoms": [
        "Engine Misfires",
        "Loss of Power",
        "Check Engine Light On"
      ],
      "odiNumbers": [
        "10123456",
        "10123457"
      ]
    },
    {
      "id": "12346",
      "issueCategory": "Brakes",
      "impact": "Increased Stopping Distance",
      "symptoms": [
        "Brake Pedal Soft",
        "ABS Warning Light On"
      ],
      "odiNumbers": [
        "10123458"
      ]
    }
  ]
}