Product Recalls
Food, drug, and product recalls
Search product recalls from the FDA and CPSC. Look up food, drug, and consumer product recalls by name or brand, or check if any product has active safety recalls. Covers FDA enforcement actions and CPSC recalls from official US government databases.
Search FDA food recalls by product name, brand, or ingredient. Returns recall reason, classification (I/II/III), distribution pattern, and status.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-recalls",
"skill": "search_food_recalls",
"input": {
"query": "peanut butter"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch FDA drug and medication recalls by drug name, brand, or manufacturer. Returns recall reason, classification (I/II/III), distribution, and status.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-recalls",
"skill": "search_drug_recalls",
"input": {
"query": "ibuprofen"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch CPSC consumer product recalls for toys, electronics, baby gear, furniture, and household items. Returns hazard details, remedies, and manufacturer information.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-recalls",
"skill": "search_product_recalls",
"input": {
"query": "stroller"
}
}' \
https://api.toolrouter.com/v1/tools/callGet the latest recalls across all categories or filter by food, drug, device, or product. No search query needed — returns the most recent recall actions.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-recalls",
"skill": "recent_recalls",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callCheck if a specific product or brand has any active or ongoing recalls. Searches across FDA food, drug, and CPSC databases simultaneously and highlights ongoing issues.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-recalls",
"skill": "check_product_safety",
"input": {
"product": "romaine lettuce"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"product-recalls","skill":"search_food_recalls","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Can I check one brand across food, drugs, and consumer products?
Yes. `check_product_safety` searches FDA food and drug recalls plus CPSC consumer product recalls together, which is useful when you only know the brand or product name.
Can I pull the latest recalls without a search term?
`recent_recalls` returns the newest recall actions across categories and can be narrowed to food, drug, device, or consumer product recalls.
What kinds of searches are supported?
Use `search_food_recalls`, `search_drug_recalls`, or `search_product_recalls` to search by product name, brand, ingredient, manufacturer, or hazard keyword.
What details come back in the results?
Results include the recall number, status, classification, reason or hazard, remedy, manufacturer or firm, and distribution details so you can judge how serious the recall is.