# FERC Energy Regulation Federal Register Document Lookup

> FERC Energy Regulation Federal Register Document Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves stored detail for a single Federal Register document by entityId (e.g. 'fedreg:2026-14090'), or lists all tracked FERC energy regulation documents.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-ferc-energy/status
- Price: $0.01/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-regulation-federal-register-document-lookup-a434f7b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_osLxOT-B206Ho7bpX5kNq

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-regulation-federal-register-document-lookup-a434f7b7
```

Example prompt: Can you pull up the details for Federal Register document fedreg:2026-14090 — I need the stored FERC energy regulation record for that filing.

## When to prefer this

Use this endpoint when you need structured, pre-stored details about a specific Federal Register document related to FERC energy regulation and already have the entityId. Prefer this over live Federal Register API calls when speed and cost are priorities and the document has already been indexed. Also useful for listing all tracked FERC energy regulatory documents when no entityId is specified.

## Known failure modes

- Unknown or invalid entityId returns empty or 404-equivalent response
- Missing required 'id' query param returns entity list instead of specific record
- Document not yet ingested into oracle returns empty entity
- Payment failure (x402) if USDC not provided or insufficient
- Malformed entityId format (not matching 'fedreg:YYYY-NNNNN' pattern) may return no results

## How this service works

Full stored detail for a single wholesale electricity & natural-gas markets rule by Federal Register document ID (e.g. 'fedreg:2026-14090') — title, issuing agency, rule type, effective date, and 1-10 compliance-impact score. Covers transmission, wholesale, interconnection, natural gas, rto.

## Output

Returns a stored entity object containing the details of a single Federal Register document associated with FERC energy regulation, including relevant metadata fields captured at ingestion. If no entityId is provided, returns a list of all tracked Federal Register entities in this domain.

## 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": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ferc-energy-regulation-federal-register-document-lookup-a434f7b7/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)
