# FDA Drug Label Lookup

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

Retrieves key FDA structured product label sections for a drug by name, including boxed warning, indications, dosing, contraindications, warnings, drug interactions, and pregnancy information.

## Facts

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

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-drug-label-lookup-33056719
```

Example prompt: Can you pull up the FDA label for metformin — I need to see the boxed warnings, contraindications, and drug interactions listed on it.

## When to prefer this

Use this endpoint when you need authoritative FDA-sourced drug label information (warnings, dosing, interactions, contraindications, pregnancy) for a specific drug by name. Prefer this over general web search when you need structured, regulatory-official drug label data rather than synthesized summaries. Best for compliance, clinical reference, or safety screening use cases.

## Known failure modes

- Drug name not found in FDA database — returns an error or empty result if the name is unrecognized or misspelled
- Ambiguous drug name matching multiple products — may return label for most common match
- FDA data unavailable or stale — underlying FDA API downtime could cause failures
- Missing label sections — some drugs may not have all label sections populated in the FDA database

## How this service works

Key FDA structured-product-label sections for a drug by name: boxed warning, indications, dosing, contraindications, warnings, drug interactions and pregnancy. Informational, not medical advice.

## Output

Returns structured sections from the FDA product label for the specified drug, including boxed warning text, indications and usage, dosing instructions, contraindications, warnings and precautions, drug interactions, and pregnancy safety information. Data is sourced from the FDA's structured product labeling database.

## 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": [
      "drug"
     ],
     "properties": {
      "drug": {
       "type": "string",
       "description": "Drug brand, generic or active-ingredient name"
      }
     }
    }
   },
   "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-drug-label-lookup-33056719/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)
