# EIA Renewable Share of US Electricity Generation by Grid Region

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

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

## Facts

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

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-share-of-us-electricity-generation-by-grid-region-fd5d36ca
```

Example prompt: What percentage of electricity generation in Texas is currently coming from renewables like solar, wind, hydro, and geothermal, according to the EIA grid monitor?

## When to prefer this

Use this endpoint when you need real-time or near-real-time renewable energy share data for US grid regions from an authoritative government source (EIA). Ideal for sustainability dashboards, carbon-aware compute scheduling, energy research, or any agent task requiring current clean energy penetration by US grid region. Prefer this over general web search when you need structured, machine-readable percentage data with regional granularity.

## Known failure modes

- Invalid region enum value returns a validation error
- EIA data temporarily unavailable causes upstream timeout or error
- Stale data if EIA grid monitor feed is delayed
- Missing or malformed query parameters may return the default US national aggregate instead of intended region

## 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 specified US grid region, broken down by renewable source type (solar, wind, hydro, geothermal), sourced from EIA real-time grid data.

## 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-share-of-us-electricity-generation-by-grid-region-fd5d36ca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
