GET /api/v1/cities/{slug}/charging
EV charging-station locations per city (BNetzA, Tier A)
Returns a city's EV charging-station locations (master data only, NO occupancy) from the BNetzA charging-station register in the canonical envelope. The data comes from the BNetzA CSV bulk download (data.bundesnetzagentur.de) and is refreshed periodically; the route serves the most recent prepared state, not a live fetch. Disabled -> 200 source_status="disabled"; no snapshot -> 200 source_status="not_ingested".
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
slug | path | yes | string |
Code samples
curl "https://infranode.dev/api/v1/cities/hamburg/charging"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/charging");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/charging")
res.raise_for_status()
print(res.json())