# Suverse OpenFDA Food Recalls Search

> Suverse OpenFDA Food Recalls Search is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-16).

Search the US FDA public food recalls dataset by free-text expression and retrieve structured matching recall records.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-openfda-food-recalls
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-openfda-food-recalls-search-8d268648
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jqMUy7ZD6EgjUC33JKc4b

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 suverse-openfda-food-recalls-search-8d268648 -d '<json body>'
```

Example prompt: Search the FDA food recalls database for any recalls involving peanut butter contamination and give me the structured details on what was found.

## When to prefer this

Choose this endpoint when you need keyless, pay-per-call access to the openFDA food recalls dataset without managing API keys or quotas. It is ideal for AI agents in pharma, food safety, health research, or regulatory compliance that need structured FDA recall data on demand. Prefer this over direct openFDA calls when operating in an x402 micropayment context or when you want a managed proxy with predictable per-call pricing.

## Known failure modes

- No matching records found for the search expression — returns empty result set
- Malformed or unsupported search expression syntax — may return error or empty results
- openFDA upstream API unavailable or rate-limited — proxy may return a degraded or error response
- Overly broad search returning truncated result sets due to dataset limits
- Payment failure via x402 protocol — call not executed

## How this service works

Query the openFDA food recalls dataset by search expression, no key, US FDA public data. Returns matching records with structured fields. For AI agents in pharma, health, and safety research.

## Output

Returns structured FDA food recall records matching the search expression, including fields such as product description, recalling firm name, recall reason, recall classification (Class I/II/III), recall status, recall initiation date, distribution pattern, and quantity recalled.

## 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": {
     "properties": {}
    },
    "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/suverse-openfda-food-recalls-search-8d268648/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
