GET /api/v1/cities/{slug}/icu-live
Live ICU bed occupancy per city (DIVI, Tier C)
Returns the per-clinic ICU bed occupancy in a city's district from the DIVI intensive-care register (RKI) in the canonical envelope. Tier C, live only (database protection right, no intermediate store). Disabled -> 200 source_status="disabled". 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/icu-live"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/icu-live");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/icu-live")
res.raise_for_status()
print(res.json())