NHTSA Vehicle Recalls & Complaints Scraper
Scrape official US vehicle safety recalls and consumer complaints from the NHTSA database by make, model and year. Get recall campaign numbers, affected components, defect summaries, consequences, remedies and injury reports. Export to JSON, CSV or Excel.
{ "dataset": "recalls", "campaignNumber": "20V314000", "make": "HONDA", "model": "ACCORD", "modelYear": "2018", "component": "FUEL SYSTEM, GASOLINE:DELIVERY:FUEL PUMP", "summary": "Honda (American Honda Motor Co.) is recalling …", "consequence": "If the fuel pump fails, the engine can stall w…", "remedy": "Honda will notify owners and dealers will repl…" }
每次运行都返回干净、带类型的记录,可直接用于你的 CRM、表格或数据库。
- 每个结果对应一条干净记录,已去重并规范化
- JSON、CSV 或 Excel 的稳定结构,也可通过 Apify API 读取
- 在云端按用量付费,无需安装或维护
一条真实的示例记录,正是你收到的结构。
| Dataset | Campaign Number | Make | Model |
|---|---|---|---|
| recalls | 20V314000 | HONDA | ACCORD |
| recalls | 20V771000 | HONDA | ACCORD |
| recalls | 18V629000 | HONDA | ACCORD |
| recalls | 23V158000 | HONDA | ACCORD |
| recalls | 23V858000 | HONDA | ACCORD |
{ "dataset": "recalls", "campaignNumber": "20V314000", "make": "HONDA", "model": "ACCORD", "modelYear": "2018", "component": "FUEL SYSTEM, GASOLINE:DELIVERY:FUEL PUMP", "summary": "Honda (American Honda Motor Co.) is recalling …", "consequence": "If the fuel pump fails, the engine can stall w…", "remedy": "Honda will notify owners and dealers will repl…" }
常见问题
Does this cover every car brand sold in the United States?
Yes. NHTSA tracks recalls and complaints for vehicles sold in the US market, so any make and model with records in the federal database can be queried. Spell the make and model the way NHTSA does, for example Honda and Accord, and provide the model year.
What is the difference between the recalls and complaints datasets?
Recalls are official campaigns filed by manufacturers when a defect needs a fix, each with a campaign number, consequence and remedy. Complaints are problems individual drivers reported to NHTSA, each with the consumer's own description. Choose which one to pull with the Dataset option.
Can I pull several models or years at once?
Yes. Add multiple makes, models and model years and the actor runs every combination. For example two makes, one model and two years runs four queries and combines all matching records into one dataset.
Why are make, model and year all required?
NHTSA returns recall and complaint data per exact vehicle, so each query needs all three. If a combination has no records the actor simply moves on and reports nothing for it rather than failing.
What happens when a field has no value?
Fields that NHTSA does not provide for a record are returned as null and never invented. Recall-only fields are null on complaint records and complaint-only fields are null on recall records.