# OpenFDA Drug Label & Safety Information API

> OpenFDA Drug Label & Safety Information API is a paid API for AI agents from bio.memoryapi.org, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Retrieves FDA drug label information including indications, warnings, dosage, interactions, adverse events, and recall data from OpenFDA.

## Facts

- Endpoint: GET https://bio.memoryapi.org/x402/bio/druginfo
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bio-memoryapi-org-7c337106
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NIhyqbRLKpIAOzav7epRe

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 bio-memoryapi-org-7c337106
```

Example prompt: Can you pull the FDA drug label for metformin — I need to see the warnings, contraindications, and any known drug interactions?

## When to prefer this

Use this endpoint when you need authoritative FDA-sourced drug label information including safety data, adverse event history, or recall notices. Prefer over general drug databases when regulatory accuracy and official FDA labeling is required, such as for clinical decision support, compliance checks, or patient safety research.

## Known failure modes

- Drug not found in OpenFDA database — returns empty or error response
- Ambiguous drug name matching multiple entries — may return first match or require more specific query
- OpenFDA API upstream unavailability — service timeout or 503 error
- Invalid or unrecognized drug name format — returns no results

## How this service works

Biomedical drug and compound data API with x402 micropayments. Powered by PubChem (NIH), OpenFDA, and ChEMBL (EMBL-EBI).

## Output

Returns structured FDA drug label data including indications and usage, warnings and precautions, contraindications, dosage and administration, adverse reactions, drug interactions, and any associated recall or safety notices sourced from OpenFDA.

## Example request

```json
{
 "name": "metformin",
 "type": "label"
}
```

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "type": "label",
  "source": "OpenFDA",
  "success": true,
  "drug_name": "metformin",
  "brand_names": [
   "GLUCOPHAGE"
  ],
  "generic_name": "METFORMIN HYDROCHLORIDE"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bio-memoryapi-org-7c337106/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bio.memoryapi.org](https://www.zero.xyz/host/bio.memoryapi.org/llms.txt)
