# x402-factory Consumer Product Recalls

> x402-factory Consumer Product Recalls is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the latest consumer product recalls from FDA, USDA FSIS, and CPSC in a single normalized schema, pre-filtered to the consumer category with severity classifications.

## Facts

- Endpoint: GET https://x402-factory.com/v1/recalls/consumer
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-consumer-product-recalls-945e70aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0kxtkwB0ZiaA6WYTcKbfI

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 x402-factory-consumer-product-recalls-945e70aa
```

Example prompt: Can you pull the latest consumer product recalls from FDA, USDA, and CPSC — show me up to 30 results for anything involving 'peanut butter' issued since 2024-01-01?

## When to prefer this

Use this endpoint when you need consumer-category recalls specifically (not industrial or food-service), already filtered and normalized across all three major U.S. recall agencies (FDA, USDA, CPSC) in one call. Prefer this over the generic /v1/recalls endpoint when you only care about consumer goods and want a cleaner, pre-filtered dataset. Best for monitoring, alerting, or search use cases where real-time freshness and cross-agency coverage matter.

## Known failure modes

- No results returned if query string matches no recall records — empty array response
- Invalid 'since' date format (must be YYYY-MM-DD) returns a validation error
- Query string shorter than 2 or longer than 120 characters rejected with input validation error
- Limit outside 1–50 range causes schema validation failure
- Upstream agency data lag may mean very recent recalls are not yet indexed

## How this service works

Latest consumer product recalls (FDA/USDA/CPSC normalized) — Latest consumer product recalls across FDA, USDA FSIS, and CPSC in one normalized schema, with severity classing and product details. Same shape as /v1/recalls, pre-filtered to the consumer category.

## Output

A normalized list of consumer product recall records drawn from FDA, USDA FSIS, and CPSC, each with product name, brand, issuing agency, recall date, hazard description, and severity classification — all in a consistent schema regardless of 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 120,
       "minLength": 2,
       "description": "Match against product, brand, or hazard"
      },
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date",
       "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))$"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-consumer-product-recalls-945e70aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
