# Recall Kitchen - U.S. Product & Food Recall Search

> Recall Kitchen - U.S. Product & Food Recall Search is a paid API for AI agents from app.recallkitchen.com, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-14).

Searches U.S. product and food recall notices from CPSC, FDA food, FDA MedWatch, and USDA databases using keyword queries.

## Facts

- Endpoint: GET https://app.recallkitchen.com/api/sources
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/recall-kitchen-u-s-product-food-recall-search-3b493318
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E7NWIwo95dOMZvfBo9Gbv

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability recall-kitchen-u-s-product-food-recall-search-3b493318
```

Example prompt: Can you search Recall Kitchen for any FDA or USDA recalls related to 'romaine lettuce' and show me the first 10 results?

## When to prefer this

Choose this endpoint when you need to programmatically search across multiple U.S. government recall databases (CPSC, FDA food, FDA MedWatch, USDA) in a single query. It is ideal for consumer safety checks, food safety monitoring, regulatory compliance workflows, or any agent task that requires verifying whether a product has been recalled. Prefer it over manually querying individual agency websites when breadth of coverage and structured results are needed.

## Known failure modes

- No results returned when query terms are too specific or misspelled
- Pagination offset exceeding total results returns empty list
- Malformed query syntax (e.g. unmatched quotes) may yield unexpected results
- Payment failure (402) if USDC balance is insufficient
- Rate limiting or timeout if the upstream recall databases are slow

## How this service works

Food, product, and NHTSA vehicle recall search for U.S. CPSC, FDA food, FDA MedWatch, USDA, and NHTSA notices.

## Output

Returns a list of matching recall notices from one or more U.S. regulatory sources (CPSC, FDA food, FDA MedWatch, USDA), each including details such as the product name, recall reason, issuing agency, and relevant dates. Results are paginated and can be filtered using keyword boolean search syntax.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "websearch query: unquoted words are AND, OR is or, -term excludes, quoted phrases match as a unit"
      },
      "limit": {
       "type": "integer",
       "description": "maximum recalls to return"
      },
      "offset": {
       "type": "integer",
       "description": "number of recalls to skip"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/recall-kitchen-u-s-product-food-recall-search-3b493318/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.recallkitchen.com](https://www.zero.xyz/host/app.recallkitchen.com/llms.txt)
