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. Disabled -> 200 source_status="disabled". Empty webcam list -> 200 source_status="no_data" (no 5xx). Dead upstream with no cache -> 503 with a hint.
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())