# BNM Data Shop – FDA De Novo Classification Orders

> BNM Data Shop – FDA De Novo Classification Orders 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 the latest FDA De Novo classification order bodies and records as structured JSON

## Facts

- Endpoint: GET https://ticks.bnm.farm/denovo-orders
- 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-de-novo-classification-orders-1d820032
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HCrWN_7x3TgNo5MYv9poc

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-de-novo-classification-orders-1d820032
```

Example prompt: Pull the latest FDA De Novo classification orders from BNM Data Shop and show me the device names, docket numbers, and the companies that received authorization.

## When to prefer this

Choose this endpoint when you need programmatic, structured access to FDA De Novo classification order data without scraping the FDA website directly. It is ideal for regulatory monitoring agents, competitive intelligence pipelines, and compliance workflows that need clean JSON output with full order body text and metadata. Prefer this over raw FDA web scraping when you need reliable, pay-per-call access with no rate-limit negotiation.

## Known failure modes

- HTTP 402 Payment Required if the x402 payment header is missing or invalid
- Empty cards/records arrays if no new De Novo orders exist for the queried period
- Network timeout if the upstream FDA CDRH database is unavailable
- Stale fetchedAt timestamp if underlying data pipeline is delayed
- Malformed response if the FDA source page structure changes unexpectedly

## How this service works

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

## Output

A JSON object containing: a list of De Novo order cards with the full order body text, docket ID, institution name, date, and source PDF URL; a parallel records array with structured fields; total record count; the source FDA URL; and a fetchedAt timestamp indicating when the data was last retrieved.

## 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": "2026-07-28",
  "cards": [
   {
    "id": "DEN250042",
    "body": "Food and Drug Administration\nCenter for Devices and Radiological Health\nRe: DEN250042\nTrade/Device Name: CaRi-Heart\nThis order, therefore, classifies the CaRi-Heart",
    "date": "2026-07-28",
    "docket": "DEN250042",
    "sourceUrl": "https://www.accessdata.fda.gov/cdrh_docs/pdf25/DEN250042.pdf",
    "institution": "Caristo Diagnostics Ltd."
   }
  ],
  "source": "https://www.accessdata.fda.gov/scripts/cdrh/cfdocs/cfpmn/denovo.cfm",
  "status": "ok",
  "product": "fda-denovo-classification-order-bodies",
  "records": [
   {
    "id": "DEN250042",
    "url": "https://www.accessdata.fda.gov/cdrh_docs/pdf25/DEN250042.pdf",
    "date": "2026-07-28",
    "firm": "Caristo Diagnostics Ltd.",
    "type": "denovo-order"
   }
  ],
  "fetchedAt": "2026-08-23T12:00:00.000Z",
  "recordCount": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bnm-data-shop-fda-de-novo-classification-orders-1d820032/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)
