GET /api/v1/cities/{slug}/webcams
Autobahn webcams per city (Autobahn API, Tier A)
Returns Autobahn webcams (coordinates and image URLs) around a city from the keyless Autobahn webcam service. The webcams are filtered by a bounding box around the city. Tier A. Full coverage: each of the 84 cities has its nearby motorways curated; a city with no webcam honestly responds with no_data. Other special cases: disabled -> 200 source_status="disabled"; dead upstream with no cache -> 503 with a hint. Note: the Autobahn webcam source currently returns no webcams nationwide, so this endpoint currently always responds with no_data.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
slug | path | yes | string |
Code samples
curl "https://infranode.dev/api/v1/cities/hamburg/webcams"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/webcams");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/webcams")
res.raise_for_status()
print(res.json())