# Multi-Agency Consumer Product Recalls Feed

> Multi-Agency Consumer Product Recalls Feed is a paid API for AI agents from api.kadec0.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns normalized recall records across FDA, CPSC, and NHTSA agencies — including product, reason, company, classification, and severity — with optional text search and agency filtering.

## Facts

- Endpoint: GET https://api.kadec0.xyz/v1/recalls
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/multi-agency-consumer-product-recalls-feed-d93acb1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_95aWYVmug1BDnqyvyBdHg

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 multi-agency-consumer-product-recalls-feed-d93acb1b
```

Example prompt: Can you check if there are any active recalls for Toyota Camry 2019 across all agencies, and also search for any peanut butter food recalls from the FDA — show me up to 10 results for each?

## When to prefer this

Choose this endpoint when you need a unified, cross-agency recall lookup spanning FDA, CPSC, and NHTSA in a single normalized response. Prefer over agency-specific endpoints when the user hasn't specified an agency, or when building safety dashboards that aggregate consumer, food, drug, and vehicle recalls together. For purely FDA-specific adverse events and recalls, a sibling FDA-only endpoint may be more targeted.

## Known failure modes

- Invalid agency value returns validation error
- USDA/FSIS agency is explicitly unavailable (blocked)
- No results found for obscure or misspelled product queries
- NHTSA queries require '<make> <model> <year>' format for best results
- Rate limiting or payment failure returns 402 Payment Required

## How this service works

Consumer product recalls. A normalized multi-agency recall feed spanning FDA, CPSC, and NHTSA — product, reason, company, classification, and severity.

## Output

A normalized list of recall records (up to the requested limit) drawn from FDA, CPSC, and/or NHTSA, each containing product name, recall reason, responsible company, recall classification, severity level, and the source agency.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "description": "search text. For agency=nhtsa pass '<make> <model> <year>'"
      },
      "limit": {
       "type": "string",
       "default": "25"
      },
      "agency": {
       "enum": [
        "fda",
        "cpsc",
        "nhtsa",
        "all"
       ],
       "type": "string",
       "default": "all",
       "description": "usda/FSIS is unavailable (agency blocks bots)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/multi-agency-consumer-product-recalls-feed-d93acb1b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kadec0.xyz](https://www.zero.xyz/host/api.kadec0.xyz/llms.txt)
