# FDA Establishment Screen

> FDA Establishment Screen is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Searches FDA public establishment records by firm name and returns ranked facility candidates with FEI numbers, location, product types, inspection counts, and latest inspection classification.

## Facts

- Endpoint: GET https://payai.agentstools.dev/fda/screen
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-establishment-screen-c77c6fc1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JO88ZlX3mHruiEyVzAGK5

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-establishment-screen-c77c6fc1
```

Example prompt: Can you search the FDA establishment records for a drug manufacturer called 'Pfizer' and give me up to 5 ranked candidates with their FEI numbers, locations, and latest inspection classifications?

## When to prefer this

Use this endpoint as a cheap first-pass screen when you have a manufacturer name and need to identify their FDA FEI number or confirm FDA registration status before calling more detailed (and expensive) facility-level endpoints. Prefer this over direct facility lookup when you are unsure of the exact FEI number or need to disambiguate between multiple facilities with similar names.

## Known failure modes

- No matching establishments found for the given firm name — returns empty candidates list
- Ambiguous firm name returns too many low-relevance matches — narrow with state or product filter
- FDA database may have stale or incomplete records for recently registered or deregistered facilities
- Invalid state code or unrecognized product type enum value causes request validation error

## How this service works

Search FDA-regulated manufacturers in the public FDA establishment records by firm name and get ranked facility candidates, each with its FDA FEI number, location, product types, inspection count and latest inspection classification. Cheap first step before fda/facility.

## Output

A ranked list of up to 25 FDA facility candidates matching the search, each containing: FDA FEI number, facility/firm name, city and state or country, regulated product type(s), total inspection count, and latest inspection classification (e.g. No Action Indicated, Voluntary Action Indicated, Official Action Indicated).

## 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",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Manufacturer / firm name to search for"
      },
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1,
       "description": "Max candidates to return, default 8"
      },
      "state": {
       "type": "string",
       "description": "Optional 2-letter US state code to narrow"
      },
      "country": {
       "type": "string",
       "description": "Optional country name to narrow (foreign firms covered)"
      },
      "product": {
       "enum": [
        "Drugs",
        "Devices",
        "Biologics",
        "Foods",
        "Cosmetics",
        "Tobacco",
        "Veterinary",
        "Radiological Health"
       ],
       "type": "string",
       "description": "Optional FDA product type to narrow"
      }
     }
    }
   },
   "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-establishment-screen-c77c6fc1/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)
