# EU Power Dispatch API – EPEX 24h Price Forecast

> EU Power Dispatch API – EPEX 24h Price Forecast 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 24-hour EPEX spot price forecast with volatility context for energy trading and flexible-load scheduling decisions

## Facts

- Endpoint: POST https://energy.halowerk.com/price/forecast
- 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-dispatch-api-epex-24h-price-forecast-00c42cee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Aay_o9S9PrwX51oMcSgc_

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-epex-24h-price-forecast-00c42cee -d '<json body>'
```

Example prompt: Pull the EPEX 24-hour price and volatility forecast for the German power market so I can decide when to dispatch my flexible load today.

## When to prefer this

Choose this endpoint when you need a forward-looking 24-hour EPEX price and volatility view for the German/EU power market to inform flexible-load dispatch, battery scheduling, or energy trading decisions. Prefer it over real-time spot endpoints when planning ahead rather than reacting to current prices, and over generic energy data APIs when you need ENTSO-E and SMARD sourced forecasts with volatility context.

## Known failure modes

- 402 Payment Required if x402 payment is not included
- Empty or malformed POST body may result in validation errors
- Stale data if upstream ENTSO-E or SMARD feeds are delayed
- Rate limiting if too many calls are made in quick succession
- Schema mismatch if required nested input fields are missing

## How this service works

Energy-trading and flexible-load agents buy this endpoint to compare the next 24 hours of EPEX prices and volatility.

## Output

A structured response containing the next 24 hours of EPEX spot market prices and associated volatility metrics, drawing on ENTSO-E and SMARD licensed data, enabling agents to compare price windows and make dispatch or trading decisions.

## 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-epex-24h-price-forecast-00c42cee/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)
