GET /api/v1/live/eround/charging
Live EV charging-station occupancy via eRound (Mobilithek DATEX-II V3)
Returns the most recent eRound occupancy delta (AFIR recharging, DATEX-II V3 EnergyInfrastructureStatusPublication, JSON syntax) in the live envelope. The feed is pulled exclusively by a background poller (every 5 minutes); this endpoint only reads its Redis snapshot, no upstream call happens at request time. The meta block additionally carries as_of (data timestamp) and refresh_seconds (poll cadence). License Creative Commons CC Zero (Tier A). Without certificate/ subscription -> 200 source_status="disabled" (never 5xx); missing/ expired snapshot or an empty delta -> 200 source_status="no_data". Live data only, kept in Redis. Per-city aggregation: /cities/{slug}/charging-status.
Parameters
This endpoint takes no parameters.
Code samples
curl "https://infranode.dev/api/v1/live/eround/charging"const res = await fetch("https://infranode.dev/api/v1/live/eround/charging");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/live/eround/charging")
res.raise_for_status()
print(res.json()) Try it
No live console is available for this endpoint. It is an operational or demo operation (for example a forced error) and is only documented here. Use the code samples above to call it directly.