# Netzhandwerker Battery Arbitrage Optimizer

> Netzhandwerker Battery Arbitrage Optimizer 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-14).

Computes optimal battery charge/discharge schedules and trading signals for energy arbitrage based on live electricity prices and battery specifications.

## Facts

- Endpoint: POST https://energy.netzhandwerker.de/arbitrage/battery
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netzhandwerker-battery-arbitrage-optimizer-13b4d41f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E4ZINZW20uALtHtVHahSm

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-battery-arbitrage-optimizer-13b4d41f -d '<json body>'
```

Example prompt: Calculate the battery arbitrage schedule for my 13.5 kWh home storage system with a round-trip efficiency of 0.92 — I want to know the best charge and discharge windows and expected profit based on live electricity prices.

## When to prefer this

Use this endpoint when you need to compute actionable battery charge/discharge schedules and profit estimates for energy arbitrage, specifically when you have a battery's capacity and efficiency on hand and want real-time electricity market data factored into the optimization. Prefer this over generic energy price endpoints when the goal is battery storage monetization rather than just price lookup.

## Known failure modes

- Missing required fields (capacity_kwh or efficiency) returns 400 validation error
- Efficiency value outside 0–1 range may cause computation error
- Live price data temporarily unavailable causes 503 service error
- Negative or zero capacity_kwh returns invalid input error
- Payment not provided or insufficient triggers 402 payment required

## 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 optimal charge and discharge windows, expected arbitrage profit, trading signals, and scheduling recommendations based on current electricity spot prices and the supplied battery's capacity and efficiency parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "efficiency": {
   "type": "number"
  },
  "capacity_kwh": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netzhandwerker-battery-arbitrage-optimizer-13b4d41f/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)
