# FDA Enforcement History Lookup

> FDA Enforcement History Lookup is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns FDA compliance actions (warning letters, injunctions, seizures, consent decrees) and US border import refusals for a manufacturer, identified by FEI number or firm name.

## Facts

- Endpoint: GET https://payai.agentstools.dev/fda/enforcement
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-enforcement-history-lookup-7bbb0234
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KJrieWAQ3R7skgYwL2C47

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 fda-enforcement-history-lookup-7bbb0234
```

Example prompt: Can you pull up the FDA enforcement history for Ranbaxy Laboratories — I want to see any warning letters, seizures, consent decrees, or import refusals they've had, especially for drugs?

## When to prefer this

Use this endpoint when you need a fast, deterministic lookup of a manufacturer's FDA compliance and enforcement history from public records. It is ideal for supply chain risk screening, supplier onboarding due diligence, import compliance checks, and regulatory audit preparation. Prefer this over generic web search when you need structured, date-stamped enforcement data across warning letters, injunctions, seizures, consent decrees, and import refusals without hallucination risk.

## Known failure modes

- Firm name not found in FDA records — try providing the FEI number directly
- FEI number invalid or not recognized — verify the 10-digit FEI format
- No enforcement actions found — firm may have a clean record or be too small to appear in public data
- Ambiguous firm name matching multiple entities — add state or country filter to narrow results
- FDA data may have a lag and recent actions may not yet appear

## How this service works

FDA enforcement history for a manufacturer from public FDA records. Give an FDA FEI number or firm name and get the compliance actions (warning letters, injunctions, seizures and consent decrees) plus the import refusals at the US border, each with its date and product. Deterministic, no LLM. Risk indicators, not legal or regulatory advice.

## Output

A structured record containing: (1) compliance actions listing type (warning letter, injunction, seizure, consent decree), date, and product involved; (2) import refusals listing date, product, and refusal reason — all sourced from public FDA records. Results are deterministic and non-AI-generated. Includes risk indicators only; not legal or regulatory advice.

## 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": {
      "fei": {
       "type": "string",
       "description": "FDA FEI number"
      },
      "name": {
       "type": "string",
       "description": "Firm name (resolves an FEI)"
      },
      "state": {
       "type": "string",
       "description": "Optional 2-letter US state code"
      },
      "country": {
       "type": "string",
       "description": "Optional country name"
      },
      "product": {
       "enum": [
        "Drugs",
        "Devices",
        "Biologics",
        "Foods",
        "Cosmetics",
        "Tobacco",
        "Veterinary",
        "Radiological Health"
       ],
       "type": "string",
       "description": "Optional FDA product type"
      }
     }
    }
   },
   "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/fda-enforcement-history-lookup-7bbb0234/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
