GET /api/v1/live/frankfurt-am-main/parking
Live parking occupancy for Frankfurt am Main (City of Frankfurt, Mobilithek DATEX II V3)
Returns the City of Frankfurt am Main parking occupancy in the live envelope: per car park the vacant spaces, occupancy percentage and graded occupancy (facilities), enriched with name, geo coordinate and capacity from the static master data. Source is two Mobilithek subscriptions (DATEX II V3, dynamic + static) joined by the adapter via the parkingRecord id. The meta block additionally carries as_of (data timestamp) and refresh_seconds (update cadence). Source disabled -> 200 source_status="disabled" (never 5xx); no data -> 200 source_status="no_data". Licence Data licence Germany Attribution 2.0. Live data only, kept in the Redis cache.
Parameters
This endpoint takes no parameters.
Code samples
curl "https://infranode.dev/api/v1/live/frankfurt-am-main/parking"const res = await fetch("https://infranode.dev/api/v1/live/frankfurt-am-main/parking");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/live/frankfurt-am-main/parking")
res.raise_for_status()
print(res.json()) Try it
No live console is available for this endpoint. It is an operational or demo operation (for example a forced error) and is only documented here. Use the code samples above to call it directly.