# fittings FDA Drug Recall Search

> fittings FDA Drug Recall Search is a paid API for AI agents from fittings.sh, paid per call via x402, $0.00596/call, status unknown (last checked 2026-09-14).

Retrieves recent FDA drug enforcement actions and recalls for a product or firm, including classification and reason.

## Facts

- Endpoint: GET https://fittings.sh/v1/fda/drug-recall
- Price: $0.00596/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-fda-drug-recall-search-16890d90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dl8BcntDHj-pzMXRjol82

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 fittings-fda-drug-recall-search-16890d90
```

Example prompt: Can you check if there have been any recent FDA drug recalls or enforcement actions for Zantac? Show me up to 20 results including the recall class and reason.

## When to prefer this

Use this endpoint when you need structured FDA drug recall and enforcement action data searchable by product or firm name, especially when you want recall classification and reason. Prefer this over manual FDA website searches when building automated compliance monitoring, drug safety workflows, or regulatory audit tools. It is well-suited for agents that need to quickly verify whether a drug or pharmaceutical company has a recent enforcement history.

## Known failure modes

- No results found for an obscure or misspelled product/firm name
- Limit parameter out of range (must be 1-50)
- Missing required query parameter returns validation error
- FDA data may have a slight lag from the most recent enforcement actions
- Rate limiting or payment failure for x402 micropayment

## How this service works

Recent drug enforcement actions and recalls for a product or firm, with classification and reason.

## Output

A list of FDA drug enforcement action and recall records, each including the product or firm name, recall classification (e.g. Class I, II, III), reason for the recall, and other enforcement details from the FDA enforcement database.

## 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": [
      "query"
     ],
     "properties": {
      "limit": {
       "type": "number",
       "description": "1-50, default 10"
      },
      "query": {
       "type": "string",
       "description": "Product or firm name"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-fda-drug-recall-search-16890d90/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
