# x402-factory Drug Recalls

> x402-factory Drug 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 FDA/USDA/CPSC drug and pharmaceutical recall notices in a normalized schema with severity classification and product details.

## Facts

- Endpoint: GET https://x402-factory.com/v1/recalls/drug
- 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-drug-recalls-28f45c86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iCXJXC1riFTg_2R1OmpEq

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-drug-recalls-28f45c86
```

Example prompt: Pull the latest drug and pharmaceutical recalls from the past 30 days — show me up to 25 results and flag anything related to contamination.

## When to prefer this

Use this endpoint when you specifically need drug and pharmaceutical recall data pre-filtered from the broader /v1/recalls endpoint, saving you the step of category-filtering client-side. Prefer this over general recall endpoints when your agent workflow is pharmaceutical- or medication-focused. Ideal for compliance monitoring, patient safety checks, pharmacy inventory audits, or healthcare journalism workflows where only drug recalls are relevant.

## Known failure modes

- No recalls found matching query or date range — returns empty list
- Invalid date format for 'since' parameter — returns validation error
- Query string too short (< 2 chars) or too long (> 120 chars) — returns validation error
- limit out of range (< 1 or > 50) — returns validation error
- Payment failure (x402 protocol) — returns 402 if USDC not provided
- Upstream data source temporarily unavailable — may return 5xx

## How this service works

Latest drug and pharmaceutical recalls (FDA/USDA/CPSC normalized) — Latest drug and pharmaceutical 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 drug category.

## Output

A list of normalized drug recall records, each including product name, brand, issuing agency (FDA/USDA FSIS/CPSC), recall date, severity class, hazard description, and other product details — 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-drug-recalls-28f45c86/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)
