# FDA Establishment Screen – Firm Name Search

> FDA Establishment Screen – Firm Name Search is a paid API for AI agents from api.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, locations, product types, and inspection history

## Facts

- Endpoint: GET https://api.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-firm-name-search-136b9529
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mub2u3dV3P8JpInbhoLmW

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-firm-name-search-136b9529
```

Example prompt: Can you search FDA establishment records for 'Pfizer Manufacturing' and return up to 10 ranked facility candidates — only drug manufacturers — so I can find the right FEI number?

## When to prefer this

Use this endpoint as a cheap first screening step before calling a detailed FDA facility lookup. Ideal when you have a firm name but not yet a FEI number. Best for compliance workflows, supply chain due diligence, pharmaceutical research, and regulatory intelligence tasks where you need to identify the correct FDA-registered establishment for a manufacturer.

## Known failure modes

- No matching firms found for the given name — empty candidates list returned
- Invalid or unsupported product type enum value causes validation error
- State code not recognized (non-US 2-letter code) — may return unfiltered or empty results
- Name query too generic returns too many candidates; narrowing with state/country/product recommended
- Rate limiting or payment failure if x402 payment not properly handled

## 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-registered facility candidates matching the search name, each containing: FDA FEI number, facility name, address/location, registered product types (Drugs, Devices, Biologics, etc.), number of FDA inspections, and the classification of the most recent inspection.

## 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-firm-name-search-136b9529/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)
