# Netzhandwerker Electricity Price History Stats

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

Returns statistical summaries of historical electricity prices for a specified time period, supporting energy trading, battery arbitrage, and ESG analysis.

## Facts

- Endpoint: POST https://energy.netzhandwerker.de/history/prices/stats
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netzhandwerker-electricity-price-history-stats-72e99dc8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BbYj1DkYHwp24wQHzsSjc

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-electricity-price-history-stats-72e99dc8 -d '<json body>'
```

Example prompt: Can you pull the electricity price statistics for the last 30 days from the Netzhandwerker energy hub — I need min, max, and average prices to evaluate whether our battery storage arbitrage was profitable this month?

## When to prefer this

Use this endpoint when you need aggregated statistical summaries of historical electricity prices (not raw tick data) for a defined time window. Ideal for battery arbitrage evaluation, energy cost reporting, ESG audits, or informing trading strategies based on past price behavior.

## Known failure modes

- Missing required 'period' field returns a 400 validation error
- Invalid or unparseable period string returns an error
- Period referencing future dates may return empty or error
- Payment not included or insufficient USDC triggers x402 payment-required response
- Server-side data unavailability for the requested period may return partial or empty results

## 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

A statistical summary of historical electricity prices for the requested period, likely including metrics such as minimum, maximum, mean, and standard deviation of prices, enabling downstream analysis for arbitrage, trading signals, and ESG 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-electricity-price-history-stats-72e99dc8/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)
