# AgentToll Drug Recalls API

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

Search and retrieve FDA drug recall data by query and result limit, returning structured recall records with metadata.

## Facts

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

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-recalls-api-df05f877 -d '<json body>'
```

Example prompt: Can you search the FDA drug recall database for any recalls related to metformin and show me the top 10 results?

## When to prefer this

Use this endpoint when you need programmatic, per-call access to FDA drug recall data with flexible search queries without maintaining your own data pipeline. Prefer this over scraping OpenFDA directly when you need a managed, pay-per-use microservice with consistent response schema and caching layer built in.

## Known failure modes

- Empty results if query string matches no recalls
- Missing or malformed query returns broad or unexpected results
- Limit integer out of acceptable range may cause validation error
- Upstream FDA data source unavailable returns error or partial data
- Payment failure (insufficient USDC) blocks the request before execution

## 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 a JSON object with a 'data' field containing an array or object of drug recall records, a 'meta' object with count, source name, and generation timestamp, a 'cached' boolean indicating if the result was served from cache, and a 'success' boolean.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  },
  "query": {
   "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-recalls-api-df05f877/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)
