# BNM Data Shop – FDA CDER Integrated Reviews

> BNM Data Shop – FDA CDER Integrated Reviews is a paid API for AI agents from ticks.bnm.farm, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns FDA Center for Drug Evaluation and Research (CDER) integrated review documents as structured JSON, including NDA numbers, drug names, review bodies, and source PDF URLs.

## Facts

- Endpoint: GET https://ticks.bnm.farm/cder-reviews
- 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/bnm-data-shop-fda-cder-integrated-reviews-10a108ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MJcqR5S2dUUkPFmjStYrF

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 bnm-data-shop-fda-cder-integrated-reviews-10a108ff
```

Example prompt: Can you pull the latest FDA CDER integrated review records from the BNM Data Shop and give me the drug names, NDA numbers, review dates, and links to the source PDFs?

## When to prefer this

Choose this endpoint when you need structured, machine-readable FDA CDER integrated review data without scraping accessdata.fda.gov directly. It is ideal for agents that need pharmaceutical NDA review records as JSON with source PDF links, especially in automated pipelines where x402 micropayment is supported. Prefer this over raw web scraping when you need reliable, parsed output with consistent schema.

## Known failure modes

- HTTP 402 if payment header is missing or invalid — endpoint requires x402 micropayment of $0.05 USDC per call
- Stale data if upstream FDA source hasn't updated recently (check fetchedAt timestamp)
- Empty records array if no CDER integrated reviews are currently available
- Network timeout if upstream FDA data source is slow or unavailable

## How this service works

Official public data as JSON. Unpaid paid routes return HTTP 402.

## Output

Returns a JSON object with an array of CDER integrated review cards and records, each containing a record ID, drug/firm name, NDA number, review date, the text body of the integrated review, and a direct URL to the source PDF on accessdata.fda.gov. Also includes metadata such as fetchedAt timestamp, total record count, product identifier, and source URL.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "schema": {
     "type": "object"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "asOf": "2024-03-14",
  "cards": [
   {
    "id": "rezdiffra",
    "body": "CENTER FOR DRUG EVALUATION AND RESEARCH\nINTEGRATED REVIEW\nNDA 217785\nREZDIFFRA\nBenefit-Risk Assessment",
    "date": "2024-03-14",
    "name": "Rezdiffra",
    "sourceUrl": "https://www.accessdata.fda.gov/drugsatfda_docs/nda/2024/217785Orig1s000IntegratedR.pdf"
   }
  ],
  "source": "https://www.accessdata.fda.gov/scripts/cder/daf/index.cfm",
  "status": "ok",
  "product": "fda-cder-integrated-review-bodies",
  "records": [
   {
    "id": "rezdiffra",
    "url": "https://www.accessdata.fda.gov/drugsatfda_docs/nda/2024/217785Orig1s000IntegratedR.pdf",
    "date": "2024-03-14",
    "firm": "Rezdiffra",
    "type": "cder-reviews"
   }
  ],
  "fetchedAt": "2026-08-25T12:00:00.000Z",
  "recordCount": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bnm-data-shop-fda-cder-integrated-reviews-10a108ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ticks.bnm.farm](https://www.zero.xyz/host/ticks.bnm.farm/llms.txt)
