Recalls

Recalls by Year, Make & Model

Retrieve open safety recalls for a vehicle by year, make, and model — no VIN required.


Checking account...
GET
/v1/recalls-ymm

Retrieve open safety recalls for a vehicle by year, make, and model — no VIN required.

Authorization

ApiKeyQuery
key<token>

Your CarsXE API key, passed as the key query parameter.

In: query

Query Parameters

year*string

The 4-digit model year (e.g. 2019).

make*string

The vehicle manufacturer name (e.g. Toyota). Case-insensitive.

model*string

The vehicle model name (e.g. Camry). Case-insensitive.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

{
  "success": true,
  "input": {
    "year": "2026",
    "make": "TOYOTA",
    "model": "COROLLA"
  },
  "data": {
    "make": "TOYOTA",
    "model": "COROLLA",
    "model_year": "2026",
    "recall_count": 1,
    "has_recalls": true,
    "recalls": [
      {
        "nhtsa_campaign_number": "26V110000",
        "manufacturer": "Toyota Motor Engineering & Manufacturing",
        "park_it": false,
        "park_outside": false,
        "over_the_air_update": false,
        "report_received_date": "25/02/2026",
        "component": "EXTERIOR LIGHTING:HEADLIGHTS",
        "summary": "Toyota is recalling certain 2026 Corolla vehicles.",
        "consequence": "Incorrectly aimed headlights can reduce driver visibility.",
        "remedy": "Dealers will replace both front headlight assemblies, free of charge.",
        "notes": null
      }
    ]
  },
  "timestamp": "2026-06-29T12:00:45.786Z"
}
{
  "success": false,
  "message": "Missing required parameters"
}

{
  "success": false,
  "message": "Missing API key"
}

{
  "success": false,
  "message": "This feature is not enabled for your account"
}
{
  "success": false,
  "message": "API usage limit exceeded",
  "usage": {
    "current": 1000,
    "limit": 1000,
    "remaining": 0
  }
}
{
  "success": false,
  "message": "Internal server error"
}