# Polyform FDA Drug Label Lookup

> Polyform FDA Drug Label Lookup is a paid API for AI agents from polyform.polyform-org.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns official FDA label data (indications, warnings, dosage) for a drug by brand or generic name via openFDA

## Facts

- Endpoint: GET https://polyform.polyform-org.workers.dev/v1/fda/drug-label
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polyform-fda-drug-label-lookup-d60999cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eYus4mnsYN_8g4lX54tki

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 polyform-fda-drug-label-lookup-d60999cf
```

Example prompt: Pull up the official FDA label for metformin — I need the indications, dosage guidelines, and any major warnings listed.

## When to prefer this

Use this endpoint when you need authoritative, regulatory-grade FDA label information for a specific drug by brand or generic name. Prefer this over general web search or unofficial drug databases when accuracy, regulatory compliance, or official prescribing information is required. Ideal for healthcare, compliance, or research workflows that need structured JSON output from openFDA.

## Known failure modes

- Drug name not found in openFDA database — returns empty results or 404-style error
- Ambiguous name matching multiple drugs — may return data for unexpected product
- Brand name not recognized; may need to retry with generic name
- openFDA upstream API unavailable — service returns error
- Misspelled drug name results in no match

## How this service works

Official FDA label data for a drug by brand or generic name: indications, warnings, dosage. Source: openFDA. JSON.

## Output

A JSON object containing official FDA drug label data sourced from openFDA, including indications and usage, dosage and administration, warnings and precautions, contraindications, and other labeling sections as available for the queried drug.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/polyform-fda-drug-label-lookup-d60999cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from polyform.polyform-org.workers.dev](https://www.zero.xyz/host/polyform.polyform-org.workers.dev/llms.txt)
