# FDA Enforcement History Lookup

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

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

## Facts

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

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-2cace82f
```

Example prompt: Can you pull the FDA enforcement history for Ranbaxy Laboratories — I want to see any warning letters, seizures, injunctions, consent decrees, and import refusals on record for them, especially for Drugs?

## When to prefer this

Use this endpoint when you need deterministic, structured FDA enforcement data for a specific manufacturer — especially for supply chain due diligence, vendor risk assessments, or regulatory compliance checks. Prefer this over general web search when you need structured, date-stamped enforcement records (warning letters, import refusals, etc.) tied to a specific FEI or firm, without LLM hallucination risk.

## Known failure modes

- Firm name resolves to no matching FEI — returns empty or ambiguous result
- FEI number not found in FDA records — returns 404 or empty response
- Firm has no enforcement history — returns empty actions array
- Ambiguous firm name matches multiple FEIs — may return first match or require disambiguation with state/country
- FDA source data temporarily unavailable — upstream fetch error
- Invalid product enum value — validation error returned

## 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 JSON object listing all recorded FDA compliance actions (warning letters, injunctions, seizures, consent decrees) and US border import refusals associated with the queried manufacturer, each entry including the action date and product involved, plus risk indicator fields. No LLM inference — data is sourced deterministically from public FDA records.

## 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-2cace82f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
