# Macaroon Network Product Safety Recall Search

> Macaroon Network Product Safety Recall Search is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Search official US FDA and UK OPSS product safety recalls and alerts by product or brand keyword

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/product-safety-recall-search-v1
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-product-safety-recall-search-fe1727c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cUWZXFPfRU_R5ZIXXwTtR

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 macaroon-network-product-safety-recall-search-fe1727c2 -d '<json body>'
```

Example prompt: Can you check if there are any official safety recalls or alerts for 'Similac' baby formula — search across the FDA and UK product safety databases?

## When to prefer this

Use this endpoint when you need to check a specific product name or brand for safety recalls outside of a merchant-trust context — e.g. verifying a product before purchase, supporting a consumer safety lookup, or enriching product data with official recall status from US FDA and UK OPSS. Prefer this over general web search when you need structured, official regulatory data with known, license-cleared sources.

## Known failure modes

- No matching records found for the given keyword — returns empty result set
- Keyword too broad or ambiguous — may return unrelated recalls
- EU Safety Gate data not yet integrated — non-food EU alerts will be absent
- Network timeout or upstream regulatory source unavailability
- Snapshot data may not reflect the most recent recalls if the bounded snapshot is stale

## How this service works

Search official product safety recalls and alerts by product or brand keyword, across US FDA (food/drug) and UK OPSS (general product safety) -- the same already-cleared sources composed inside merchant-trust-check-v1, exposed here as a standalone product for use outside a merchant-domain context (e.g. checking a specific product name). EU Safety Gate non-food product alert data is licensed for inclusion (CC BY 4.0) but not yet technically integrated pending a documented access path.

## Output

Returns a list of matching recall and safety alert records from US FDA (food and drug) and UK OPSS (general product safety) databases, including recall titles, descriptions, affected products, regulatory source, and relevant dates or reference identifiers.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/macaroon-network-product-safety-recall-search-fe1727c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.macaroonnetwork.com](https://www.zero.xyz/host/api.macaroonnetwork.com/llms.txt)
