# BNM Data Shop – FERC Orders

> BNM Data Shop – FERC 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 JSON list of FERC civil penalty orders and consent agreements, including full order text, docket numbers, institutions, and source URLs.

## Facts

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

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-ferc-orders-0bf8a159
```

Example prompt: Pull the latest FERC civil penalty orders and consent agreements for me — I need the docket numbers, institution names, dates, and links to the source PDFs.

## When to prefer this

Choose this endpoint when you need structured, machine-readable FERC civil penalty order data without scraping the FERC website yourself. It is ideal for compliance monitoring, legal research, due diligence workflows, or regulatory dashboards that need docket numbers, institution names, order text, and source URLs as JSON. Prefer it over manual web scraping or PACER lookups for quick, programmatic access to FERC enforcement records.

## Known failure modes

- HTTP 402 if payment not included — endpoint requires $0.05 USDC per call via x402 protocol
- No records returned if FERC has not published new orders recently
- Stale data if fetchedAt timestamp is older than expected refresh cycle
- Network timeout if upstream FERC CMS 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 FERC order cards and records, each containing a docket ID, order body text, date, institution name, source PDF URL, and a record count. Also includes a product identifier, fetch timestamp, and source page 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": "2026-04-17",
  "cards": [
   {
    "id": "IN25-6-000",
    "body": "UNITED STATES OF AMERICA\nFEDERAL ENERGY REGULATORY COMMISSION\nInterstate Power and Light Company\nDocket No. IN25-6-000\nORDER APPROVING STIPULATION AND CONSENT AGREEMENT",
    "date": "2026-04-17",
    "docket": "IN25-6-000",
    "sourceUrl": "https://cms.ferc.gov/sites/default/files/2026-04/20260417-195FERC61048-IN25-6-000-Interstate%20Power%20and%20Light%20Co-Settlement%20Agreement.pdf",
    "institution": "Interstate Power and Light Company"
   }
  ],
  "source": "https://www.ferc.gov/civil-penalties/all-civil-penalty-actions-2026",
  "status": "ok",
  "product": "ferc-institution-order-bodies",
  "records": [
   {
    "id": "IN25-6-000",
    "url": "https://cms.ferc.gov/sites/default/files/2026-04/20260417-195FERC61048-IN25-6-000-Interstate%20Power%20and%20Light%20Co-Settlement%20Agreement.pdf",
    "date": "2026-04-17",
    "firm": "Interstate Power and Light Company",
    "type": "ferc-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-ferc-orders-0bf8a159/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)
