# Netzhandwerker Historical Electricity Price Lookup

> Netzhandwerker Historical Electricity Price Lookup is a paid API for AI agents from energy.netzhandwerker.de, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Retrieves historical electricity price data for a specified time period from the Netzhandwerker energy research platform.

## Facts

- Endpoint: POST https://energy.netzhandwerker.de/history/prices
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netzhandwerker-historical-electricity-price-lookup-6f040ae7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C1HKRBzF_Mf-mc1D9pYTh

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 netzhandwerker-historical-electricity-price-lookup-6f040ae7 -d '<json body>'
```

Example prompt: Pull the historical electricity prices from Netzhandwerker for the last 30 days so I can analyze price trends and spot arbitrage opportunities.

## When to prefer this

Choose this endpoint when you need historical electricity price data for a specific past time window — for backtesting battery arbitrage strategies, generating ESG cost reports, analyzing price volatility, or auditing energy procurement costs. Prefer this over the live/current price endpoint when retrospective data is required.

## Known failure modes

- Invalid or malformed period string returns 400 bad request
- Period out of available historical range returns empty result or 404
- Payment not processed (x402 protocol) returns 402 Payment Required
- Server unavailable returns 503
- Excessively long period range may time out or return partial data

## How this service works

Live electricity prices, carbon intensity, grid load, renewable share, flexibility windows, battery arbitrage, trading signals and ESG reporting for autonomous agents.

## Output

Returns historical electricity price data for the requested time period, likely including timestamped price values (e.g. EUR/MWh or similar units), covering day-ahead or spot market prices suitable for trend analysis, battery arbitrage optimization, and energy cost reporting.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "period"
 ],
 "properties": {
  "period": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netzhandwerker-historical-electricity-price-lookup-6f040ae7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from energy.netzhandwerker.de](https://www.zero.xyz/host/energy.netzhandwerker.de/llms.txt)
