# EIA Hourly Electric Grid Demand API

> EIA Hourly Electric Grid Demand API is a paid API for AI agents from api.monpham.work, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns US electricity grid demand data (MWh/hour) from the EIA-930 Hourly Electric Grid Monitor, filtered by balancing authority and time range

## Facts

- Endpoint: GET https://api.monpham.work/v1/eia/grid
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eia-hourly-electric-grid-demand-api-1a839f3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pr05JzY8lj4zrbG1qHmur

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 eia-hourly-electric-grid-demand-api-1a839f3c
```

Example prompt: Pull the last 72 hours of hourly electricity demand data for the CAISO balancing authority from the EIA grid monitor.

## When to prefer this

Choose this endpoint when you need authoritative, free-at-source US federal electricity grid demand data from EIA-930, especially for major balancing authorities like CAISO, PJM, ERCOT, or NYISO, and want normalized JSON output with caching — ideal for energy analytics, grid monitoring, or demand forecasting pipelines that need reliable hourly MWh figures.

## Known failure modes

- Invalid or unsupported balancing authority code returns an error
- Requested time range exceeds available data coverage
- Missing required 'ba' or 'length' fields returns a validation error
- EIA upstream data gaps may result in incomplete hourly records
- Payment failure via x402 protocol blocks the request

## How this service works

US electricity grid demand (MWh/hour) from EIA. POST body: {ba, length, start?}.

## Output

A normalized JSON response containing hourly electricity demand values in MWh for the specified balancing authority and time window, sourced from EIA-930 federal data and served cached for performance.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eia-hourly-electric-grid-demand-api-1a839f3c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.monpham.work](https://www.zero.xyz/host/api.monpham.work/llms.txt)
