# EU Power Dispatch API – Germany Renewable Share

> EU Power Dispatch API – Germany Renewable Share is a paid API for AI agents from energy.halowerk.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the current renewable energy share and generation mix breakdown for the German electricity grid.

## Facts

- Endpoint: POST https://energy.halowerk.com/renewable/share
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eu-power-dispatch-api-germany-renewable-share-49224420
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1GpoDETkDe6xRGGpL0KLs

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 eu-power-dispatch-api-germany-renewable-share-49224420 -d '<json body>'
```

Example prompt: What's the current renewable energy share and generation mix on the German electricity grid right now? I need to know how much is coming from wind, solar, and other sources versus fossil fuels.

## When to prefer this

Choose this endpoint when you need real-time or near-real-time renewable share and generation mix data specifically for Germany, particularly for carbon-aware scheduling, ESG reporting, or green energy gating decisions. It is purpose-built for agentic use with x402 micropayment support and draws from authoritative ENTSO-E and SMARD sources.

## Known failure modes

- Upstream ENTSO-E or SMARD data unavailable — stale or missing data returned
- 402 Payment Required if x402 payment header is missing or invalid
- 503 if energy.halowerk.com backend is temporarily offline
- Data may be delayed by 15–60 minutes depending on upstream reporting cadence

## How this service works

Carbon-aware and ESG agents buy this endpoint to measure the current renewable share and generation mix in Germany.

## Output

Returns the current renewable energy share as a percentage of total generation, along with a breakdown of the generation mix by source (e.g. wind, solar, nuclear, gas, coal) for the German electricity grid, sourced from ENTSO-E and SMARD 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/eu-power-dispatch-api-germany-renewable-share-49224420/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from energy.halowerk.com](https://www.zero.xyz/host/energy.halowerk.com/llms.txt)
