# BNM Data Shop – FRB Enforcement Orders

> BNM Data Shop – FRB Enforcement 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 Federal Reserve Board enforcement orders (cease and desist orders, etc.) as structured JSON, sourced directly from the Fed's public enforcement actions page.

## Facts

- Endpoint: GET https://ticks.bnm.farm/frb-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-frb-enforcement-orders-a9175db2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q_5vulrHA7gYH6JuDQXc-

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-frb-enforcement-orders-a9175db2
```

Example prompt: Pull the latest Federal Reserve enforcement orders — I want to see which institutions have active cease and desist orders, including the docket numbers and dates.

## When to prefer this

Use this endpoint when you need structured, machine-readable Federal Reserve enforcement order data (cease and desist orders, etc.) without scraping the Fed website yourself. It is ideal for compliance workflows, due diligence checks, and monitoring regulatory actions against banking institutions. Prefer this over manual scraping when you need the order body text alongside structured metadata in a single call.

## Known failure modes

- HTTP 402 Payment Required if the x402 micropayment is not included — caller must pay $0.05 USDC per call
- Stale data if the Federal Reserve has not yet published new enforcement actions
- Empty records array if no enforcement actions are currently listed
- Network timeout if the upstream Fed website is temporarily unavailable

## How this service works

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

## Output

A JSON object containing: a list of enforcement order records (each with id, firm name, date, order type, and source PDF URL), full card objects with the body text of each order, the source URL, the product identifier, record count, and the timestamp of when the data was last fetched. Returns HTTP 402 if payment is not provided.

## 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-04-14",
  "cards": [
   {
    "id": "26-019-B-HC",
    "body": "BOARD OF GOVERNORS OF THE FEDERAL RESERVE SYSTEM\nDocket No. 26-019-B-HC\nCOMMUNITY BANKSHARES, INC.\nOrder to Cease and Desist",
    "date": "2026-04-14",
    "docket": "26-019-B-HC",
    "sourceUrl": "https://www.federalreserve.gov/newsevents/pressreleases/files/enf20260416a1.pdf",
    "institution": "Community Bankshares, Inc."
   }
  ],
  "source": "https://www.federalreserve.gov/supervisionreg/enforcementactions.htm",
  "status": "ok",
  "product": "frb-institution-order-bodies",
  "records": [
   {
    "id": "26-019-B-HC",
    "url": "https://www.federalreserve.gov/newsevents/pressreleases/files/enf20260416a1.pdf",
    "date": "2026-04-14",
    "firm": "Community Bankshares, Inc.",
    "type": "frb-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-frb-enforcement-orders-a9175db2/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)
