# Product Recall Finder: Unsafe Food, Drugs, Toys & More (`scrapemint/product-recall-finder`) Actor

Find products pulled from shelves for safety problems: consumer products, food, drugs and medical devices in one place. Search by keyword and date, get the problem, risk, fix, company, units and where sold. Official US government data (CPSC and FDA). No API key needed.

- **URL**: https://apify.com/scrapemint/product-recall-finder.md
- **Developed by:** [Ken M](https://apify.com/scrapemint) (community)
- **Categories:** Business, E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$5.00 / 1,000 recall founds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Product Recall Finder: Unsafe Food, Drugs, Toys & More

Find products pulled from shelves for safety problems, all in one place: consumer products, food, drugs and medical devices. Search by keyword and date, get one clean row per recall with the problem, the risk level, the fix, the company, how many units, and where it was sold.

Built for **online sellers, retailers, compliance teams, insurers and journalists**. Selling a recalled product can mean fines and lawsuits. Checking four government databases by hand takes hours; this does it in one run.

### What you get for each recall

- **What the product is** and its maker or importer.
- **What the problem is** (the hazard or reason) and, for FDA recalls, a plain risk level: serious, moderate or low.
- **What to do about it** (the fix: refund, repair, replacement).
- **How big it is**: units affected and reported injuries.
- **Where it was sold** and, for FDA recalls, how widely it was distributed.
- **Product codes (UPCs)** where available, recall number, date and official link.

### Sources

| Source | Covers |
| --- | --- |
| CPSC (SaferProducts) | Toys, electronics, appliances, furniture, tools, sports gear and other consumer products |
| FDA food enforcement | Food and drinks |
| FDA drug enforcement | Medicines |
| FDA device enforcement | Medical devices |

All official US government data, fetched live on every run.

### Example output

```json
{
  "source": "CPSC consumer products",
  "recallDate": "2026-07-09",
  "title": "Flaunt Recalls MagSafe Battery Chargers Due to Fire Hazard",
  "products": ["Flaunt MagSafe Battery Chargers"],
  "company": "Flaunt",
  "problem": "The lithium-ion battery can overheat and ignite, posing a risk of serious injury or death from fire",
  "fix": "Refund",
  "unitsAffected": "About 1,400",
  "soldAt": "Flaunt.com",
  "upcs": [],
  "recallNumber": "26610",
  "url": "https://www.cpsc.gov/Recalls/2026/..."
}
```

### Pricing

**$0.005 per recall found.** The **first 2 rows of every run are free**. A typical "everything from the last 90 days" run returns a few hundred recalls for a dollar or two; a keyword watch run ("battery", "stroller", "peanut") usually costs cents.

### How to run it via API

```bash
curl -X POST "https://api.apify.com/v2/acts/scrapemint~product-recall-finder/run-sync-get-dataset-items?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"keyword": "battery", "dateFrom": "2026-01-01"}'
```

Run it on a schedule with a keyword to get an ongoing safety watch for your product category.

### Frequently asked questions

**Does it cover meat and poultry?** No. Those recalls (USDA FSIS) are not included; the other four databases are.

**How fresh is the data?** It is fetched live from the government APIs on every run, so you see what they publish, usually same day.

**Can I watch just my niche?** Yes, set a keyword and pick sources, then schedule the run daily or weekly.

### More tools from Scrapemint

- [Car Info & Safety Check](https://apify.com/scrapemint/car-safety-check): car details and safety problems from the car ID number (VIN).
- [Sanctions & Watchlist Screening](https://apify.com/scrapemint/sanctions-watchlist-scraper): screen names against OFAC and UK sanctions lists.
- [Website Change Monitor](https://apify.com/scrapemint/website-change-monitor): alerts when any web page changes.

# Actor input Schema

## `keyword` (type: `string`):

Filter recalls by a word in the product name or description, e.g. battery, stroller, peanut, insulin. Leave empty for all recalls in the date range.

## `sources` (type: `array`):

Which recall databases to search. Empty = all four.

## `dateFrom` (type: `string`):

Earliest recall date, YYYY-MM-DD. Empty = last 90 days.

## `dateTo` (type: `string`):

Latest recall date, YYYY-MM-DD. Empty = today.

## `maxRows` (type: `integer`):

Cap on recalls returned, newest first. Controls total cost. First 2 rows per run are free.

## Actor input object example

```json
{
  "sources": [
    "consumer_products",
    "food",
    "drugs",
    "medical_devices"
  ],
  "maxRows": 200
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keyword": "",
    "sources": [
        "consumer_products",
        "food",
        "drugs",
        "medical_devices"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapemint/product-recall-finder").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "keyword": "",
    "sources": [
        "consumer_products",
        "food",
        "drugs",
        "medical_devices",
    ],
}

# Run the Actor and wait for it to finish
run = client.actor("scrapemint/product-recall-finder").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keyword": "",
  "sources": [
    "consumer_products",
    "food",
    "drugs",
    "medical_devices"
  ]
}' |
apify call scrapemint/product-recall-finder --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapemint/product-recall-finder",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Ivplsu0UnLtHdRvvj/builds/A515n1PgJnZvGnlKs/openapi.json
