# EU Power Grid Events Feed (Dunkelflaute, Storm, Negative Prices, Records)

> EU Power Grid Events Feed (Dunkelflaute, Storm, Negative Prices, Records) is a paid API for AI agents from energy.halowerk.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a real-time event feed of significant German/EU power grid events including Dunkelflaute (low wind+solar periods), storms, negative electricity prices, and grid records.

## Facts

- Endpoint: POST https://energy.halowerk.com/events/grid
- Price: $0.005/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-grid-events-feed-dunkelflaute-storm-negative-prices-records-b221b766
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2rrn-_A-S8g5HYt-fhx3Z

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-grid-events-feed-dunkelflaute-storm-negative-prices-records-b221b766 -d '<json body>'
```

Example prompt: Pull the latest EU power grid event feed and tell me if there are any active Dunkelflaute, storm, negative price episodes, or grid records happening right now in the German electricity market.

## When to prefer this

Choose this endpoint when you need a curated event-driven signal — not raw time-series data — specifically for Dunkelflaute, storm, negative price, or record-breaking grid conditions in Germany and the EU. It is ideal for alert-driven agents, trading bots, and flexible-load controllers that need to react to discrete grid anomalies rather than poll continuous price streams.

## Known failure modes

- 402 Payment Required if x402 micropayment header is missing or invalid
- Empty event list if no significant events are currently active
- Stale data if upstream ENTSO-E or SMARD feed is delayed
- Network timeout if the halowerk.com service is temporarily unavailable
- Malformed request body causing 400 Bad Request

## How this service works

Ereignisfeed für Dunkelflaute, Sturm, negative Preise und Rekorde.

## Output

A feed of significant power grid events for Germany and the broader EU market, including Dunkelflaute (extended low-renewable-output periods), storm events, negative electricity price occurrences, and record grid conditions — each with event type, timestamps, severity, and relevant grid context 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-grid-events-feed-dunkelflaute-storm-negative-prices-records-b221b766/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)
