# FERC & Wholesale Energy Market Compliance Brief

> FERC & Wholesale Energy Market Compliance Brief is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns an LLM-generated compliance digest summarizing the most important FERC and wholesale electricity & natural-gas market regulatory rule changes within a given time window, with deadlines highlighted.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-ferc-energy/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ferc-wholesale-energy-market-compliance-brief-4e9ddba3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qTC06sbl4WFL8MIw1hVhf

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 ferc-wholesale-energy-market-compliance-brief-4e9ddba3
```

Example prompt: Give me a quick compliance brief on wholesale electricity and natural gas market rules — anything important that came out in the last 30 days with deadlines I should know about.

## When to prefer this

Use this endpoint when you need a concise, human-readable executive summary of FERC and wholesale energy/natural-gas market compliance obligations — rather than a raw list of Federal Register documents. Ideal for compliance officers, energy traders, or legal teams who want the key deadlines and actionable items surfaced without manually reading regulatory filings. Prefer this over the raw Federal Register feed endpoints when the user wants a digest rather than raw scored documents.

## Known failure modes

- No regulatory changes found in the requested window — brief may be minimal or empty
- Invalid since parameter format (must be ISO 8601 date-time) returns a 400 error
- Payment not completed or insufficient USDC balance results in 402 Payment Required
- LLM generation failure may fall back to template-based output (reflected in generatedBy field)
- Very recent timestamps may yield sparse results if Federal Register ingestion has latency

## How this service works

LLM-written compliance digest of the wholesale electricity & natural-gas markets rules in the window that actually matter (transmission, wholesale, interconnection, natural gas, rto) — issuing agency named, deadlines called out.

## Output

Returns a structured object containing: a plain-text LLM-written compliance digest (brief) highlighting the handful of FERC and wholesale energy market rules that actually matter in the requested window, a flag indicating whether the brief was generated by an LLM or a template (generatedBy), and the count of underlying Federal Register changes the brief is based on (basedOnChanges).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ferc-wholesale-energy-market-compliance-brief-4e9ddba3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
