Aller au contenu
GET /v1/recalls

Safety recalls for a vehicle

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/nhtsa-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/nhtsa-api/v1/recalls" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nhtsa-api/v1/recalls", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nhtsa-api/v1/recalls");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/nhtsa-api/v1/recalls",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "make": "honda",
        "year": "2022",
        "count": 4,
        "model": "accord",
        "recalls": [
            {
                "notes": "Owners may also contact the National Highway Traffic Safety Administration Vehicle Safety Hotline at 1-888-327-4236 (TTY 1-800-424-9153), or go to www.nhtsa.gov.",
                "remedy": "Dealers will replace the VSA modulator, free of charge.  Owner notification letters were mailed July 24, 2023.  Owners may contact Honda customer service at 1-888-234-2138.  Honda's numbers for this recall are OEJ, XEK, AEY, XEX and OEW.",
                "park_it": false,
                "summary": "Honda (America Honda Motor Co.) is recalling certain 2023 Civic, Acura RDX, Acura Integra, and 2022 Honda Accord vehicles.  A ball valve in the vehicle stability assist (VSA) modulator may leak brake fluid, which can result in unintended vehicle movement when the brake hold feature is engaged or an unexpected increase in brake pedal travel.",
                "component": "SERVICE BRAKES, HYDRAULIC:ANTILOCK/TRACTION CONTROL/ELECTRONIC LIMITED SLIP:CONTROL UNIT/MODULE",
                "consequence": "Unintended vehicle movement or an unexpected increase in brake pedal travel can increase the risk of a crash or injury.",
                "report_date": "15/06/2023",
                "manufacturer": "Honda (American Honda Motor Co.)",
                "over_the_air": false,
                "park_outside": false,
                "campaign_number": "23V430000"
            },
            {
                "notes": "Owners may also contact the National Highway Traffic Safety Administration Vehicle Safety Hotline at 1-888-327-4236 (TTY 1-800-424-9153), or go to www.nhtsa.gov.",
                "remedy": "Dealers will replace the seat weight sensors, free of charge.  Owner notification letters were mailed March 28, 2024, October 18, 2024, and August 2025.  This is a phased recall.  Owners may contact Honda customer service at 1-888-234-2138.  Honda's numbers for these recalls are XHP and VHQ.",
                "park_it": false,
                "summary": "Honda (American Honda Motor Co.) is recalling certain 2020-2022 Pilot, Accord, Civic sedan, HR-V, Odyssey, 2020 Civic coupe, Fit, 2021-2022 Civic hatchback, 2021 Civic Type R, Insight, 2020-2021 CR-V, CR-V Hybrid, Passport, Ridgeline, Accord Hybrid, 2020 Acura MDX, 2022 Acura MDX, 2020-2022 Acura RDX, and 2020-2021 Acura TLX vehicles.  The front passenger seat weight sensor may crack and short circuit, failing to suppress the air bag as intended.",
                "component": "AIR BAGS:SENSOR:OCCUPANT CLASSIFICATION:FRONT PASSENGER",
                "consequence": "An air bag that deploys unintentionally during a crash can increase the risk of injury.",
                "report_date": "01/02/2024",
                "manufacturer": "Honda (American Honda Motor Co.)",
                "over_the_air": false,
                "park_outside": false,
            
…