GET /api/v1/cities/{slug}/base
City master data from Wikidata
Returns a city's population, area and geo coordinates from Wikidata in the canonical envelope with attribution and license tag. If the source is disabled, the route responds with 200, data=null and meta.source_status="disabled" (never 5xx). If the upstream is down and no cached value exists, it returns 503 with a hint pointing to GET /api/v1/health.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
slug | path | yes | string |
Code samples
curl "https://infranode.dev/api/v1/cities/hamburg/base"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/base");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/base")
res.raise_for_status()
print(res.json())