GET /api/v1/cities/{slug}/office-wait-times
Government office wait times per city (live, keyless, Tier A)
Live wait times of citizen offices/service centres and the vehicle registration office per city from the city's open feed. Each office carries name, wait_minutes (null when missing/non-numeric), is_open, status_text, detail_url and observed_at (ISO-UTC). Live-only (not persisted). Currently: Cologne (waiting-od.php, DL-DE/Zero 2.0). Partial coverage: toggle off -> 200 source_status="disabled"; city not covered -> 200 source_status="not_covered" (with covered_cities); covered city without an office -> 200 source_status="no_data". Broken upstream fields never cause 500.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
slug | path | yes | string |
Code samples
curl "https://infranode.dev/api/v1/cities/hamburg/office-wait-times"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/office-wait-times");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/office-wait-times")
res.raise_for_status()
print(res.json())