GET /api/v1/cities/{slug}/post-offices
Postfilialen je Stadt (OSM, Tier B)
Postfilialen (OSM amenity=post_office) mit optionalem opening_hours/operator. Tier B (ODbL). Deaktiviert -> 200 source_status="disabled".
Parameter
| Name | In | Pflicht | Typ | Beschreibung |
|---|---|---|---|---|
slug | path | ja | string |
Code-Beispiele
curl "https://infranode.dev/api/v1/cities/hamburg/post-offices"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/post-offices");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/post-offices")
res.raise_for_status()
print(res.json())