# ClinicalIntelPulse FDA Drug Recall Checker

> ClinicalIntelPulse FDA Drug Recall Checker is a paid API for AI agents from clinicalintelpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Checks the FDA enforcement database for active and past recalls of a specific drug, explains the recall class in plain language, and provides guidance on next steps.

## Facts

- Endpoint: GET https://clinicalintelpulse.theaslangroupllc.com/api/clinical/recall-check
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clinicalintelpulse-fda-drug-recall-checker-f8a8bd24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eIxtmMh7mT9-Rliw3ZmHx

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 clinicalintelpulse-fda-drug-recall-checker-f8a8bd24
```

Example prompt: Can you check if metformin 500mg has been recalled by the FDA — I want to know if there's an active or past recall, what class it is, and what I should do about it?

## When to prefer this

Use this endpoint when a patient, caregiver, pharmacist, or health assistant agent needs to quickly verify whether a specific medication has been or is currently subject to an FDA recall, and wants a plain-language explanation of the recall class and recommended next steps — rather than navigating the FDA website directly.

## Known failure modes

- Drug name not found in FDA enforcement database — returns no recall records
- Ambiguous drug name matching multiple products — may require more specific input (e.g., NDC code)
- FDA database temporarily unavailable — service may return an error or stale data
- Payment of 0.1 USDC not processed — returns 402 Payment Required
- Medication exists but has no recall history — returns a clear 'no recalls found' response

## How this service works

Is my medication recalled? Checks the FDA enforcement databases (drug AND food — infant formula and supplements are filed under food) for active and past recalls, explains the recall class (I/II/III) in plain language, and lays out what to do. For patient, caregiver, pharmacy, and health-assistant agents.

## Output

Returns recall status (active or historical), recall class (I, II, or III) with a plain-language explanation of severity, recall reason, affected lot numbers or NDC codes if available, and actionable guidance on what the patient, caregiver, or pharmacy should do next.

## 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",
     "properties": {
      "drug": {
       "type": "string"
      },
      "lang": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "recalls": [
   {
    "date": "20251104",
    "reason": "Detection of a trace nitrosamine impurity (NDMA) above the acceptable daily limit.",
    "status": "Ongoing",
    "product": "Valsartan tablets, 160 mg",
    "classification": "Class II",
    "recalling_firm": "Example Pharma Inc.",
    "where_distributed": "Nationwide (US)",
    "voluntary_or_mandated": "Voluntary"
   }
  ],
  "disclaimer": "Recall records come from the FDA openFDA enforcement database. A recall of one lot does not mean every bottle of this drug is affected — check the specific product, lot number, and NDC against the recall notice, and ask your pharmacist.",
  "what_to_do": [
   "Find the NDC and lot number on your bottle and compare them to the recall notice.",
   "Call your pharmacy — they can tell you if your specific lot is affected and provide a replacement.",
   "Do not stop a blood-pressure medicine on your own; ask your pharmacist about a safe alternative first."
  ],
  "bottom_line": "There are active recalls for some valsartan lots over a trace impurity — check your specific bottle rather than assuming yours is affected.",
  "query_summary": {
   "drug": "valsartan",
   "records_found": 6
  },
  "highest_severity": "Class II",
  "severity_meaning": "Class II means the product might cause temporary or medically reversible health problems, and the chance of serious harm is low.",
  "has_active_recall": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clinicalintelpulse-fda-drug-recall-checker-f8a8bd24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clinicalintelpulse.theaslangroupllc.com](https://www.zero.xyz/host/clinicalintelpulse.theaslangroupllc.com/llms.txt)
