# OpenFDA Food Adverse Events Query

> OpenFDA Food Adverse Events Query 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).

Searches the US FDA openFDA Food Adverse Events dataset by expression and returns structured matching records

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-openfda-food-event
- 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/openfda-food-adverse-events-query-0301e33e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bfrcwUGczm3Cv4HjR_UyK

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 openfda-food-adverse-events-query-0301e33e -d '<json body>'
```

Example prompt: Search the FDA food adverse event database for reports involving peanut butter reactions — I need the structured records so I can analyze what symptoms were reported and how frequently.

## When to prefer this

Use this endpoint when you need keyless, pay-per-call access to the FDA openFDA food adverse events dataset without setting up an FDA API key. Ideal for AI agents in pharma, food safety, device safety, or regulatory research contexts that need structured adverse event data on-demand. Prefer this over direct openFDA access when operating in an agentic x402 payment flow or when API key management is not feasible.

## Known failure modes

- Invalid search expression syntax returns error or empty results
- No matching records found for the query returns empty result set
- Upstream openFDA API unavailability causes request failure
- Malformed POST body or missing required fields returns validation error
- Rate limiting or payment failure via x402 protocol blocks the request

## How this service works

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

## Output

Returns structured JSON records from the FDA openFDA food adverse events dataset matching the search expression, including product details, reported reactions, event dates, outcomes, and reporter information in the standard openFDA record format.

## 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/openfda-food-adverse-events-query-0301e33e/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)
