# FDA Drug Recall Changes Feed

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

Returns FDA drug enforcement actions (recalls) detected since a given timestamp, scored by severity class, with recalling firm, reason, and distribution details.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/fda-drug-recalls/changes
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-drug-recall-changes-feed-eb69ac9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t7IQypIz7sVK24MNo1q6l

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-drug-recall-changes-feed-eb69ac9d
```

Example prompt: Pull all FDA drug recalls reported since 2025-01-01T00:00:00Z and show me only the most serious ones — Class I only (significance 9 or higher), up to 50 results.

## When to prefer this

Use this endpoint when you need a structured, machine-readable feed of recent FDA drug recalls filtered and scored by severity — especially for monitoring workflows, alerting pipelines, or compliance dashboards that need to detect Class I (most serious) recalls as they are reported. Prefer over manual FDA website checks or general news searches when you need structured data with significance scoring and direct source links.

## Known failure modes

- Invalid or missing 'since' date-time format returns a 400 error
- min_significance outside 1–10 range returns a validation error
- No recalls found in the window returns count:0 with an empty changes array
- Upstream FDA data unavailable may return a 503 or stale data
- limit exceeding 500 returns a validation error

## How this service works

FDA drug enforcement actions (recalls) reported since a timestamp, scored by recall class (Class I = most serious), with recalling firm, reason, and distribution. Filter ?min_significance=9 for Class I only.

## Output

A JSON object with a count, source label, and an array of change records — each containing a recall title, summary, significance score (1–10), detected timestamp, effective date, entity ID for detail lookup, and a primary-source URL for verification.

## 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": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Only changes detected after this ISO-8601 instant"
      },
      "min_significance": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Keep only changes scored at least this"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "changes": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "detail": {
          "type": "object"
         },
         "summary": {
          "type": "string"
         },
         "entityId": {
          "type": "string"
         },
         "sourceUrl": {
          "type": [
           "string",
           "null"
          ],
          "description": "Primary-source link for verification"
         },
         "detectedAt": {
          "type": "string",
          "format": "date-time"
         },
         "significance": {
          "type": "integer",
          "maximum": 10,
          "minimum": 1
         },
         "effectiveDate": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fda-drug-recall-changes-feed-eb69ac9d/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)
