VOOZH about

URL: https://apify.com/bikram07/recall-radar

โ‡ฑ US Recall Radar โ€” CPSC, FDA & NHTSA Feed ยท Apify


๐Ÿ‘ US Recall Radar โ€” CPSC, FDA & NHTSA Recall Feed avatar

US Recall Radar โ€” CPSC, FDA & NHTSA Recall Feed

Pricing

Pay per usage

Go to Apify Store

US Recall Radar โ€” CPSC, FDA & NHTSA Recall Feed

One unified, deduplicated feed of US product recalls from CPSC, FDA (food/drug/device) and NHTSA. Filter by agency, keyword, date window, or vehicle. Official government APIs, normalized into a clean schema. Zero-config: returns the last 30 days of CPSC + FDA recalls.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

๐Ÿ‘ Bikram

Bikram

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 days ago

Last modified

Share

One unified, deduplicated feed of United States product recalls pulled directly from three official government APIs โ€” the CPSC (Consumer Product Safety Commission), the FDA (food, drug, and medical-device enforcement via openFDA), and NHTSA (vehicle recalls). Instead of polling three separate, inconsistent government endpoints and reconciling their formats yourself, you get one clean, normalized schema with every recall mapped to the same fields, deduplicated, and sorted newest-first.

Run it with zero configuration to get the last 30 days of CPSC + FDA recalls, or narrow it by agency, keyword, date window, or a specific vehicle.

What it does

The U.S. government publishes recalls across several disconnected systems:

  • CPSC (saferproducts.gov) โ€” consumer products: furniture, toys, appliances, electronics, batteries, etc.
  • openFDA enforcement (open.fda.gov) โ€” food, drugs, and medical devices.
  • NHTSA (nhtsa.gov) โ€” motor vehicles and vehicle equipment.

Each API has its own field names, date formats, and quirks. Recall Radar queries the relevant endpoints, maps every record into one common schema, removes duplicates (on source + recallId), sorts by recall date descending, and writes the result to your dataset โ€” ready to export as JSON, CSV, or Excel, feed into a webhook, or query from an AI agent over MCP.

Why a unified US recall feed matters

  • Amazon FBA & e-commerce sellers โ€” a recalled product in your catalog or supply chain is a liability and a listing-takedown risk. Marketplaces remove recalled items fast; sellers who catch a recall first avoid stranded inventory, chargebacks, and account health hits.
  • Retail & safety teams โ€” pull recalls across product categories (CPSC) and consumables (FDA) in one pass to check against what's on your shelves or in your formulary.
  • Compliance, QA & regulatory โ€” monitor your own products, competitors, and component suppliers for enforcement actions without manually checking three agencies every week.
  • Insurance, legal & due diligence โ€” track recall history by brand or manufacturer for product-liability risk and deal diligence.

Input

Every field is optional. Empty input {} returns the last 30 days of CPSC + FDA recalls.

FieldTypeDefaultDescription
agenciesarray["cpsc","fda"]Sources to include: cpsc, fda (= food + drug + device), or a single FDA category fda-food / fda-drug / fda-device, and nhtsa. NHTSA only runs if vehicle filters are also supplied.
daysBackinteger30Look-back window in days from today.
keywordstring""Case-insensitive filter on title, product name, brand, and manufacturer. Example: lithium battery.
maxRecordsinteger200Cap on total records output after dedupe and sorting.
vehicleMakestringโ€”NHTSA vehicle make, e.g. Honda. Required (with model + year) to query NHTSA.
vehicleModelstringโ€”NHTSA vehicle model, e.g. Accord.
vehicleYearstringโ€”NHTSA model year, e.g. 2018.

Zero-config (last 30 days of CPSC + FDA):

{}

Only Class-relevant food recalls mentioning a keyword, last 60 days:

{
"agencies":["fda-food"],
"keyword":"allergen",
"daysBack":60
}

Consumer products mentioning batteries, last 90 days:

{
"agencies":["cpsc"],
"keyword":"battery",
"daysBack":90,
"maxRecords":500
}

NHTSA vehicle recalls for a specific car (plus CPSC + FDA):

{
"agencies":["cpsc","fda","nhtsa"],
"vehicleMake":"Honda",
"vehicleModel":"Accord",
"vehicleYear":"2018"
}

Output schema

One normalized item per recall. Missing fields are null or empty โ€” never fabricated.

FieldTypeDescription
recallIdstringSource-unique recall identifier (CPSC RecallID, FDA recall number, NHTSA campaign number).
sourcestringcpsc ยท fda-food ยท fda-drug ยท fda-device ยท nhtsa.
recallDatestringRecall date, ISO YYYY-MM-DD.
titlestringHuman-readable recall title / headline.
productNamestringRecalled product name(s).
brandstringBrand, when the source provides one (mostly FDA drug + NHTSA).
manufacturerstringManufacturer / distributor / recalling firm.
hazardstringThe hazard or reason for the recall.
remedystringWhat consumers should do (refund, repair, destroy, contact firm).
unitsAffectedstringQuantity in distribution, as reported by the source.
injuriesReportedbool / nulltrue / false for CPSC (from its injuries field); null where the source doesn't report it.
recallUrlstringLink to the recall page (CPSC, NHTSA) or the FDA enforcement portal.
imageUrlsarrayProduct image URLs (CPSC only).
rawCategorystringThe source's own category / class label (e.g. FDA Class II, NHTSA component).

Sample item (CPSC):

{
"recallId":"10816",
"source":"cpsc",
"recallDate":"2026-06-11",
"title":"7-Drawer Dressers Recalled Due to Risk of Tip-Over and Entrapment Hazards",
"productName":"Hasuit 7-Drawer Dressers",
"brand":null,
"manufacturer":"Shenzhen DUOMENGDUO Electronic Commerce Co., Ltd., dba Hasuit Direct",
"hazard":"The recalled dressers are unstable if not anchored to the wall, posing tip-over and entrapment hazards.",
"remedy":"Stop using immediately, render unusable, and email a photo to the firm for a refund.",
"unitsAffected":"About 3,000",
"injuriesReported":false,
"recallUrl":"https://www.cpsc.gov/Recalls/2026/7-Drawer-Dressers-Recalled...",
"imageUrls":["https://www.cpsc.gov/s3fs-public/hasuit-1.gif"],
"rawCategory":null
}

Data sources

SourceEndpointAuthCovers
CPSChttps://www.saferproducts.gov/RestWebServices/RecallNoneConsumer products
openFDA โ€” Foodhttps://api.fda.gov/food/enforcement.jsonNone (keyless 1,000 req/day)Food & cosmetics
openFDA โ€” Drughttps://api.fda.gov/drug/enforcement.jsonNoneDrugs
openFDA โ€” Devicehttps://api.fda.gov/device/enforcement.jsonNoneMedical devices
NHTSAhttps://api.nhtsa.gov/recalls/recallsByVehicleNoneMotor vehicles

All five are official U.S. government open-data APIs. No scraping, no API key, no login.

Use cases

  • FBA / marketplace seller monitoring โ€” schedule a daily run with a keyword for your category and get alerted the moment a competing or matching product is recalled.
  • Retail safety desk โ€” one feed across CPSC consumer goods and FDA consumables for store-level recall checks.
  • Compliance dashboards โ€” pipe the normalized feed into BigQuery, a sheet, or a BI tool and track recalls by source, brand, or hazard over time.
  • AI agents (MCP) โ€” let an agent answer "were there any battery recalls this month?" by calling this Actor live.
  • Vehicle-specific lookups โ€” check recalls for a specific make/model/year through NHTSA.

Run on a schedule (recall alerts)

  1. Set your filters (agencies, keyword, daysBack).
  2. Create an Apify Schedule โ€” daily catches new recalls within ~24h.
  3. Add a webhook to push results to email, Slack, Teams, or your own system.

Use from Claude, Cursor & AI agents (MCP)

{
"mcpServers":{
"apify":{
"url":"https://mcp.apify.com/sse?actors=bikram07/recall-radar",
"headers":{"Authorization":"Bearer YOUR_APIFY_TOKEN"}
}
}
}

Or call the API directly:

curl-X POST "https://api.apify.com/v2/acts/bikram07~recall-radar/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN"\
-H"Content-Type: application/json"\
-d'{"agencies":["cpsc","fda"],"keyword":"battery","daysBack":30}'

What it is NOT

  • Not legal, safety, or compliance advice. It reports recalls as published by the agencies; it does not interpret your obligations. Confirm any action with the official recall notice and your counsel.
  • Not an enriched / scored feed. No proprietary "AI severity" ratings or predictions โ€” output is the official government data, normalized. Fields a source doesn't publish (e.g. FDA brand for food, injury counts for FDA) are left empty, never invented.
  • NHTSA needs vehicle filters. NHTSA's recallsByVehicle endpoint requires a make + model + year, so vehicle recalls only appear when you supply all three. A zero-config run does not include NHTSA.
  • US only. These are U.S. federal recall databases. It does not cover EU (RAPEX), UK, Canada, or other jurisdictions.
  • Not real-time to the minute. Freshness depends on each agency's publishing cadence (FDA enforcement updates roughly weekly; CPSC and NHTSA update as recalls are posted). The Actor has only what the agencies have published.
  • Not affiliated with CPSC, FDA, or NHTSA. Independent tool built on their public APIs.

Built on the official CPSC, openFDA, and NHTSA APIs. Not affiliated with or endorsed by any U.S. government agency.

Related searches: US recall feed ยท CPSC recall API ยท FDA recall monitor ยท NHTSA vehicle recall API ยท product recall tracker ยท unified recall database ยท Amazon FBA recall alerts ยท openFDA enforcement ยท consumer product recall monitoring ยท recall compliance feed

You might also like

US Recall API | FDA, CPSC & USDA FSIS

tictechid/vanzi-us-recall-intelligence

Search US product recalls from FDA, CPSC, and USDA FSIS in one run. Filter by brand, category, or date and export normalized recall data with severity scoring.

Product Recall Aggregator

gabrielaxy/product-recall-aggregator

Aggregates product recall alerts from FDA, CPSC, NHTSA, and other agencies. Tracks recalls across food, drugs, vehicles, and consumer goods, providing structured data with product details, hazards, and recommended remedies.

๐Ÿ‘ User avatar

Gabriel Antony Xaviour

6

CPSC Product Recalls Scraper

compute-edge/cpsc-product-recalls-scraper

Extract product recall data from the U.S. Consumer Product Safety Commission (CPSC) database. Search by keyword, date range, or recall number. Get hazards, injuries, manufacturers, retailers, remedies, and product details for 9,000+ recalls.

CPSC Product Recalls Scraper - Safety Alerts API

pink_comic/cpsc-product-recalls

Search official CPSC product recalls, consumer safety alerts, hazards, remedies, dates, brands, and recall URLs. Useful for marketplace compliance, product monitoring, safety research, and recall data pipelines.

CPSC Consumer Product Recalls Scraper

parseforge/cpsc-recalls-scraper

Scrape consumer product recall data from the U.S. Consumer Product Safety Commission (CPSC). Get recall descriptions, hazards, injuries, remedies, manufacturers, retailers, images, and UPC codes. Filter by date range and keyword. Covers thousands of recalls.