GET /api/v1/live/dortmund/parking
[DEPRECATED] Live parking occupancy Dortmund (successor: /cities/dortmund/parking)
DEPRECATED (DATA-40): superseded by the unified endpoint GET /api/v1/cities/dortmund/parking (one parking endpoint for all cities with a source fallback). This path stays backward-compatible and carries Deprecation/Link headers pointing to the successor. Returns Dortmund parking occupancy (dynamic parking guidance system, car parks and park&ride) in the live envelope. Source is the City of Dortmund's direct, key-less open dataset (open-data.dortmund.de), not the Mobilithek. 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 Zero 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/dortmund/parking"const res = await fetch("https://infranode.dev/api/v1/live/dortmund/parking");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/live/dortmund/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.