# AgentToll Product Recalls Search

> AgentToll Product Recalls Search 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 product recall records from health/safety databases, returning paginated results with metadata.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/health/product-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-product-recalls-search-ac9653f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FBUumbQZ93jZA4--tqqhs

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-product-recalls-search-ac9653f5 -d '<json body>'
```

Example prompt: Search product recalls for 'peanut butter' and return the top 10 results so I can see if any brands have been recalled recently.

## When to prefer this

Use this endpoint when an agent needs to programmatically search product recall data across health and consumer safety domains — especially when integrating recall checks into automated workflows, research pipelines, or consumer safety tools. Prefer this over manual web searches when structured, machine-readable recall data is needed at $0.03 per call via USDC micropayment.

## Known failure modes

- Empty query returns all or no records depending on implementation
- Limit set too high may cause slow response or truncation
- No recalls found for query returns empty data array with success:true
- Payment failure (insufficient USDC) returns 402 error before data is returned
- Malformed request body returns 400 validation error

## 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 array or object containing recall records matching the query, plus metadata including total count, data source name, and generation timestamp, and a boolean indicating whether the result was served from cache.

## 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-product-recalls-search-ac9653f5/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)
