# FDA Drug Recall Detail Lookup

> FDA Drug 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 details for a single FDA drug recall by its entityId (e.g. 'fda-drug-recalls:D-1234-2026').

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/fda-drug-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-drug-recall-detail-lookup-67cac522
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GjzzsyqxNqubQs6Y9m6YI

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-detail-lookup-67cac522
```

Example prompt: Can you pull up the full details for FDA drug recall fda-drug-recalls:D-1234-2026? I want to see everything stored about that specific recall.

## When to prefer this

Use this endpoint when you already have a specific FDA drug recall entityId and need the full stored detail record for that recall. This is ideal for drill-down lookups after discovering recall IDs from a listing or digest endpoint, or when verifying details about a known recall event. Prefer the sibling digest endpoint if you want a summary of recent serious drug recalls without knowing a specific ID.

## Known failure modes

- Missing or invalid entityId returns empty result or 404-equivalent
- Malformed entityId format (not following 'fda-drug-recalls:D-XXXX-YYYY' pattern) may return no match
- Network or service unavailability returns HTTP 5xx
- Payment not provided returns HTTP 402
- Querying for a recall that hasn't been ingested yet returns no data

## How this service works

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

## Output

Returns a stored entity object containing the full detail record for the requested FDA drug recall, including recall metadata such as product name, reason for recall, classification, and other fields associated with the given entityId. Returns an empty or error response if the entityId is not found.

## 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-drug-recall-detail-lookup-67cac522/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)
