# EIA Renewable Energy Share by US Grid Region

> EIA Renewable Energy Share by US Grid Region is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns the renewable share (solar, wind, hydro, geothermal) of US electricity generation as a percentage of the latest hourly total, broken down by EIA grid region.

## Facts

- Endpoint: GET https://payai.agentstools.dev/energy/renewables
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eia-renewable-energy-share-by-us-grid-region-d77cf3de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K5F5RCc-CP3K2p1044TkK

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-renewable-energy-share-by-us-grid-region-d77cf3de
```

Example prompt: What percentage of electricity on the Texas grid is currently coming from renewable sources like solar, wind, hydro, and geothermal?

## When to prefer this

Use this endpoint when you need real-time or near-real-time renewable energy share data for US electricity grids, sourced authoritatively from the EIA. Ideal for energy dashboards, sustainability reporting, grid monitoring agents, or any use case requiring official government data on clean energy penetration by region. Prefer this over general web search when you need structured, cited, machine-readable renewable percentage figures.

## Known failure modes

- Invalid region enum value returns validation error
- EIA data temporarily unavailable causes upstream fetch failure
- Stale data if EIA grid monitor has not updated in the current hour
- Network timeout if EIA source is slow to respond

## How this service works

Renewable share of US electricity generation from the EIA grid monitor: solar, wind, hydro and geothermal as a percentage of the latest hourly generation total, by grid region. Source: U.S. Energy Information Administration.

## Output

Returns the renewable share as a percentage of the latest hourly electricity generation total for the requested US grid region, sourced from EIA grid monitor data. Includes breakdown by renewable type (solar, wind, hydro, geothermal) and the underlying generation totals.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "metric": {
       "enum": [
        "share"
       ],
       "type": "string",
       "description": "Renewable share of generation (default share)"
      },
      "region": {
       "enum": [
        "us",
        "california",
        "carolinas",
        "central",
        "florida",
        "mid_atlantic",
        "midwest",
        "new_england",
        "new_york",
        "northwest",
        "southeast",
        "southwest",
        "tennessee",
        "texas"
       ],
       "type": "string",
       "description": "Grid region (default us)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eia-renewable-energy-share-by-us-grid-region-d77cf3de/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
