Recalls
Look up recall records
Look up U.S. recall records for a given make / model / year. Acts as a normalising proxy in front of the upstream recall database. Results are cached server-side so repeated lookups for the same combination do not re-hit the upstream.
get/recalls
Query parameters
makestring required
Example:TOYOTA
Vehicle manufacturer (case-insensitive)
modelstring required
Example:RAV4
Vehicle model (case-insensitive)
modelYearstring required
Example:2020
4-digit model year as a string
Response
Recall lookup result
Example response
{
"count": 2,
"hasRecalls": true,
"recalls": [
{
"manufacturer": "Toyota Motor Engineering & Manufacturing",
"reportReceivedDate": "23/01/2020",
"component": "FUEL SYSTEM, GASOLINE",
"modelYear": "2020",
"make": "TOYOTA",
"model": "RAV4"
}
]
}