# BNM Data Shop – FDIC Orders

> BNM Data Shop – FDIC 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 a list of FDIC enforcement orders and consent orders as structured JSON, sourced from the official FDIC orders portal.

## Facts

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

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-fdic-orders-73522930
```

Example prompt: Pull the latest FDIC enforcement and consent orders from the BNM Data Shop so I can see which banks recently received regulatory actions.

## When to prefer this

Choose this endpoint when you need FDIC enforcement and consent order data in structured JSON format without scraping the FDIC website yourself. It is ideal for compliance monitoring, due diligence workflows, or regulatory research pipelines that need machine-readable records with docket numbers, order body text, and direct source URLs. Prefer this over direct FDIC website scraping when you want a clean, pay-per-call API with no scraping overhead.

## Known failure modes

- HTTP 402 if payment is not made or x402 payment header is missing/invalid
- Empty records array if no FDIC orders are currently available
- Network timeout if the upstream FDIC orders portal is slow or unavailable
- Stale data if the upstream source has not been refreshed recently

## How this service works

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

## Output

Returns a JSON object with an array of FDIC order records (id, bank name, date, docket number, order body text, source URL), a record count, an 'asOf' date, fetch timestamp, product identifier, and status fields indicating success.

## 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-01-13",
  "cards": [
   {
    "id": "FDIC-26-0001b",
    "bank": "MutualOne Bank",
    "body": "FEDERAL DEPOSIT INSURANCE CORPORATION\nWASHINGTON, D.C.\nCONSENT ORDER FDIC-26-0001b\nMUTUALONE BANK\nFramingham, Massachusetts",
    "date": "2026-01-13",
    "docket": "FDIC-26-0001b",
    "sourceUrl": "https://orders.fdic.gov/sfc/servlet.shepherd/document/download/069SJ000013gUnXYAU?operationContext=S1"
   }
  ],
  "source": "https://orders.fdic.gov/s/",
  "status": "ok",
  "product": "fdic-institution-order-bodies",
  "records": [
   {
    "id": "FDIC-26-0001b",
    "url": "https://orders.fdic.gov/sfc/servlet.shepherd/document/download/069SJ000013gUnXYAU?operationContext=S1",
    "date": "2026-01-13",
    "firm": "MutualOne Bank",
    "type": "fdic-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-fdic-orders-73522930/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)
