# FERC Energy Regulatory Changes Feed

> FERC Energy Regulatory Changes Feed is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns Federal Register final and proposed rules for wholesale electricity and natural-gas markets since a given timestamp, each scored 1–10 for compliance impact with effective dates and primary-source links.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-ferc-energy/changes
- 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/ferc-energy-regulatory-changes-feed-e56bc359
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DYnF1R2ifStd1z8MDNTms

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-energy-regulatory-changes-feed-e56bc359
```

Example prompt: Pull all FERC energy regulatory changes since January 1, 2025, but only show me the ones with a compliance significance score of at least 7 — I need the titles, effective dates, and links to the original filings.

## When to prefer this

Choose this endpoint when you need structured, scored FERC regulatory changes (wholesale electricity and natural gas) from the Federal Register, with built-in compliance impact scoring and effective dates — especially when filtering by recency and significance threshold. Prefer over raw Federal Register scraping when you need pre-scored, normalized change records with primary-source links.

## Known failure modes

- Invalid ISO-8601 'since' timestamp returns a 400 validation error
- 'min_significance' outside 1–10 range returns a 400 error
- 'limit' outside 1–500 range returns a 400 error
- No changes found in the given window returns count 0 with empty changes array
- Upstream Federal Register source unavailable may return 5xx or stale data

## How this service works

Federal Register final & proposed rules affecting wholesale electricity & natural-gas markets (Federal Energy Regulatory Commission) since a timestamp — covering transmission, wholesale, interconnection, natural gas, rto — each scored 1-10 for compliance impact, with effective dates and primary-source links.

## Output

A JSON object with a count of matching changes and an array of regulatory change records, each containing a title, type (final/proposed rule), summary, significance score (1–10), effective date, detected-at timestamp, entityId, and a primary-source URL linking to the Federal Register entry.

## 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": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Only changes detected after this ISO-8601 instant"
      },
      "min_significance": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Keep only changes scored at least this"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "changes": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "detail": {
          "type": "object"
         },
         "summary": {
          "type": "string"
         },
         "entityId": {
          "type": "string"
         },
         "sourceUrl": {
          "type": [
           "string",
           "null"
          ],
          "description": "Primary-source link for verification"
         },
         "detectedAt": {
          "type": "string",
          "format": "date-time"
         },
         "significance": {
          "type": "integer",
          "maximum": 10,
          "minimum": 1
         },
         "effectiveDate": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ferc-energy-regulatory-changes-feed-e56bc359/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)
