# AgentToll Drug Labels Lookup

> AgentToll Drug Labels Lookup is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-16).

Retrieves FDA drug label information for a specified drug name, returning structured label data including indications, warnings, and dosage details.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/health/drug-labels
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-drug-labels-lookup-e80866dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xUurck8YA_8I0Auvy7R2v

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 agenttoll-drug-labels-lookup-e80866dd -d '<json body>'
```

Example prompt: Can you pull up the FDA drug label information for lisinopril — show me up to 5 results?

## When to prefer this

Use this endpoint when an agent needs structured, official FDA drug label data for a specific medication by name, especially in health, pharmaceutical research, or compliance contexts. Prefer this over general web search when authoritative, structured label data is required. At $0.03/call it is cost-effective for per-drug lookups.

## Known failure modes

- Drug name not found in FDA database — returns empty data array with count 0
- Invalid input types (e.g. non-integer limit) — likely returns validation error
- Payment failure via x402 — request rejected before processing
- Rate limiting or API unavailability — upstream FDA API timeout or error
- Misspelled drug name returns no results or unrelated labels

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns an array or object of FDA drug label records for the queried drug, along with metadata including result count, data source name, and timestamp of when the data was generated. Also includes a boolean indicating whether the response was served from cache.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  },
  "drug_name": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "oneOf": [
    {
     "type": "array"
    },
    {
     "type": "object"
    }
   ]
  },
  "meta": {
   "type": "object",
   "properties": {
    "count": {
     "type": "integer"
    },
    "source": {
     "type": "string"
    },
    "generated_at": {
     "type": "string",
     "format": "date-time"
    }
   }
  },
  "cached": {
   "type": "boolean"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-drug-labels-lookup-e80866dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
