# FDA Drug Approval Status Lookup

> FDA Drug Approval Status 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 drug application by entityId (e.g. 'fda-app:NDA212345')

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/fda-approvals/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-approval-status-lookup-4f5740bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sQsni_7Fie9XBa9Xp235M

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-approval-status-lookup-4f5740bc
```

Example prompt: Can you pull up the FDA approval details for drug application NDA212345 — I need to see the stored entity record for it.

## When to prefer this

Use this endpoint when you already have a specific FDA application entityId (e.g. 'fda-app:NDA212345') and need to retrieve its full stored detail record. Prefer this over broader search endpoints when you need a single, precise application lookup rather than a list or trend analysis.

## Known failure modes

- Missing or invalid entityId returns empty or error response
- entityId not found if the application is not yet tracked
- Malformed entityId format (not matching 'fda-app:NDA######') may return no result
- Payment not processed results in 402 response
- Rate limiting or service unavailability returns 5xx error

## How this service works

Stored detail for a single application (entityId like 'fda-app:NDA212345').

## Output

Returns a JSON object containing the stored detail entity for the specified FDA drug application, including approval status and associated metadata fields for the given NDA or BLA application ID.

## 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-approval-status-lookup-4f5740bc/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)
