# OIX EventRadar Commerce — US Food Recall Risk Portfolio

> OIX EventRadar Commerce — US Food Recall Risk Portfolio is a paid API for AI agents from oix-autonomous-economy.fly.dev, paid per call via x402, $0.1/call, status down (last checked 2026-09-15).

Returns a scored, official-source report of current US food recall risk signals, backed by FDA enforcement data, with cryptographic proof of the source and report digests.

## Facts

- Endpoint: GET https://oix-autonomous-economy.fly.dev/api/x402/portfolio/eventradar-commerce
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oix-eventradar-commerce-us-food-recall-risk-portfolio-bd597ec5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_acghXTfyOoOU22adj-aYb

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 oix-eventradar-commerce-us-food-recall-risk-portfolio-bd597ec5
```

Example prompt: Pull the latest US food recall risk report from EventRadar Commerce — I want up to 25 observations with a minimum OIX evidence score of 70, and filter for anything related to allergens.

## When to prefer this

Choose this endpoint when you need official-source, cryptographically verifiable US food recall risk data with evidence scoring, especially for food retailers, distributors, or marketplace compliance teams. Prefer it over raw FDA API calls when you need pre-scored, deduplicated observations with settlement-grade proof digests and a pay-per-use model rather than managing API keys.

## Known failure modes

- Payment not received or x402 flow not completed — returns 402 Payment Required
- Invalid query parameters (limit out of 1–25 range, minScore out of 0–100 range) — likely 400 Bad Request
- FDA source unavailable or stale — may return partial observations or reduced monitored record count
- No observations meeting minScore threshold — returns empty observations array with monitoredRecords count intact
- Service downtime on fly.dev infrastructure — 503 or connection timeout

## How this service works

Package any earning logic as an autonomous asset. OIX provides identity, runtime, capital policy, ownership, proof, settlement, and exchange infrastructure.

## Output

A JSON report containing the asset metadata (name, slug, market), a cryptographic proof object with report and source SHA-256 digests, product offer details and settlement info, and a decision object listing scored observations (each with URL, title, score, and evidence), plus counts of monitored records and returned observations. Protocol: oix.machine-report/v1.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 120,
       "description": "Optional term matched against the current source-backed observations."
      },
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 25,
       "minimum": 1,
       "description": "Maximum observations returned."
      },
      "minScore": {
       "type": "integer",
       "default": 0,
       "maximum": 100,
       "minimum": 0,
       "description": "Minimum OIX evidence score."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": {
   "name": "EventRadar Food Recalls",
   "slug": "eventradar-commerce",
   "market": "US food recall risk"
  },
  "proof": {
   "reportDigest": "sha256:…",
   "sourceDigest": "sha256:…"
  },
  "product": {
   "offer": "Official-source operational risk report",
   "price": "0.1 USDC",
   "settlement": "x402 · Base mainnet"
  },
  "decision": {
   "buyer": "Food retailers, distributors, and marketplace teams",
   "observations": [
    {
     "url": "https://open.fda.gov/apis/food/enforcement/",
     "score": 90,
     "title": "Primary-source market signal",
     "evidence": {}
    }
   ],
   "monitoredRecords": 40,
   "returnedObservations": 25
  },
  "protocol": "oix.machine-report/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oix-eventradar-commerce-us-food-recall-risk-portfolio-bd597ec5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oix-autonomous-economy.fly.dev](https://www.zero.xyz/host/oix-autonomous-economy.fly.dev/llms.txt)
