# FDA Medical Device Recalls Digest

> FDA Medical Device Recalls Digest is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns an LLM-generated narrative digest summarizing the most serious FDA medical device recalls within a specified time window

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/fda-device-recalls/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-medical-device-recalls-digest-6620a39c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__2jYS00Iy09-WX-Et0XKK

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-medical-device-recalls-digest-6620a39c
```

Example prompt: Give me an AI-written digest of the most serious FDA medical device recalls from the last 30 days so I can see what's happened recently.

## When to prefer this

Use this endpoint when you need a human-readable, narrative summary of serious FDA medical device recalls rather than raw structured recall records. Ideal for health monitoring agents, compliance dashboards, or news briefing tools that want an LLM-distilled overview rather than a raw data feed. Prefer this over drug recall or food recall siblings specifically for device-class recalls.

## Known failure modes

- No recalls found in the specified window — may return an empty or minimal digest
- Invalid date-time format for 'since' parameter returns a 400 error
- LLM generation failure may fall back to template-based output (generatedBy: template)
- Payment failure (x402) if USDC not provided or insufficient
- Upstream FDA data unavailability causes stale or empty results

## How this service works

An LLM-written digest of the most serious medical-device recalls in the window.

## Output

A structured response containing: a 'brief' field with an LLM-written narrative summary of the most serious medical device recalls in the window; a 'generatedBy' field indicating whether the summary was produced by an LLM or a template; and a 'basedOnChanges' integer indicating how many recall events the digest is based on.

## 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": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fda-medical-device-recalls-digest-6620a39c/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)
