# BNM Data Shop – FDA PCAC 503A Briefing Memos

> BNM Data Shop – FDA PCAC 503A Briefing Memos 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 Pharmacy Compounding Advisory Committee (PCAC) 503A bulk drug substance briefing memos as structured JSON

## Facts

- Endpoint: GET https://ticks.bnm.farm/pcac
- 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-pcac-503a-briefing-memos-6cdae56f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QZIQan0tfY2Bo0zTDN4LG

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-pcac-503a-briefing-memos-6cdae56f
```

Example prompt: Pull the latest FDA Pharmacy Compounding Advisory Committee 503A briefing memos — I need the list of substances being reviewed, their meeting dates, and links to the FDA documents.

## When to prefer this

Use this endpoint when you need machine-readable, structured access to FDA Pharmacy Compounding Advisory Committee 503A briefing memos without scraping the FDA website yourself. It is ideal for compliance monitoring, pharmaceutical research pipelines, or regulatory intelligence agents that need substance names, meeting dates, and document URLs in a consistent JSON format. Prefer this over manual FDA website scraping when you need reliable, pay-per-call access with no subscription required.

## Known failure modes

- HTTP 402 Payment Required if the x402 micropayment header is missing or invalid
- Empty records array if no PCAC memos have been published yet for the current cycle
- Stale fetchedAt timestamp if FDA source data has not been refreshed recently
- Network timeout if FDA upstream is slow to respond
- Malformed JSON if upstream FDA page structure changes unexpectedly

## How this service works

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

## Output

A JSON object containing: an 'ok' status flag, an 'asOf' date, a 'cards' array with structured briefing card objects (id, body text excerpt, date, mediaId, meeting date string, FDA source URL, substance name), a 'records' array with condensed record entries (id, url, date, firm/substance name, type), a source URL pointing to the FDA advisory committee calendar page, the product identifier 'fda-pcac-503a-memos', a fetchedAt timestamp, and a recordCount integer.

## 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-05-11",
  "cards": [
   {
    "id": "emideltide-193344",
    "body": "FDA Briefing Document\nPharmacy Compounding Advisory Committee (PCAC) Meeting\nJuly 23 -24, 2026\nFDA Evaluation of Emideltide-Related Bulk Drug Substances",
    "date": "2026-05-11",
    "mediaId": "193344",
    "meeting": "July 23-24, 2026",
    "sourceUrl": "https://www.fda.gov/media/193344/download",
    "substance": "Emideltide"
   }
  ],
  "source": "https://www.fda.gov/advisory-committees/advisory-committee-calendar/july-23-24-2026-meeting-pharmacy-compounding-advisory-committee-07232026",
  "status": "ok",
  "product": "fda-pcac-503a-memos",
  "records": [
   {
    "id": "emideltide-193344",
    "url": "https://www.fda.gov/media/193344/download",
    "date": "2026-05-11",
    "firm": "Emideltide",
    "type": "pcac"
   }
  ],
  "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-pcac-503a-briefing-memos-6cdae56f/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)
