# FDA Food Recall Detail Lookup

> FDA Food Recall Detail Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves stored detail for a single FDA food recall by its entityId, or lists all tracked recall entities.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/fda-food-recalls/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-food-recall-detail-lookup-0040c3a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PG3pKhZiGytetRtEmxqd9

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 fda-food-recall-detail-lookup-0040c3a0
```

Example prompt: Can you pull up the full stored details for FDA food recall entity 'fda-food-recalls:D-1234-2026' and tell me everything tracked about it — status, product, reason for recall?

## When to prefer this

Use this endpoint when you have a specific FDA food recall entityId and need to retrieve full stored detail about that recall. Prefer this over a search or listing endpoint when the entityId is already known. Useful for verifying recall status, fetching recall metadata for compliance checks, or enriching downstream workflows with FDA recall data.

## Known failure modes

- Entity ID not found — returns empty or 404-equivalent response
- Malformed entityId format — may return error or no results
- Missing required query parameter when specific lookup intended — returns list instead of detail
- Payment failure (x402) — request blocked without valid USDC micropayment

## How this service works

Stored detail for a single recall (entityId like 'fda-food-recalls:D-1234-2026').

## Output

Returns a JSON object containing stored detail for the requested FDA food recall entity, including fields like recall status, affected product, reason for recall, and other entity-level metadata. If no id is provided, returns a list of all tracked recall entities.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fda-food-recall-detail-lookup-0040c3a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
