Same paths, same response shape. Just change the base URL and add your X-Api-Key — the rest of your code is unchanged.
curl "https://dawa.aws.dk/autocomplete?q=rådhuspladsen"
curl "https://api.danadresse.dk/autocomplete?q=rådhuspladsen" \
-H "X-Api-Key: dawa_live_…"
fetch("https://dawa.aws.dk/autocomplete?q=rådhuspladsen")
fetch("https://api.danadresse.dk/autocomplete?q=rådhuspladsen", {
headers: { "X-Api-Key": "dawa_live_…" }
})
requests.get("https://dawa.aws.dk/autocomplete",
params={"q": "rådhuspladsen"})
requests.get("https://api.danadresse.dk/autocomplete",
params={"q": "rådhuspladsen"},
headers={"X-Api-Key": "dawa_live_…"})
$ctx = stream_context_create();
file_get_contents("https://dawa.aws.dk/autocomplete?q=rådhuspladsen", false, $ctx);
$ctx = stream_context_create(["http" => [
"header" => "X-Api-Key: dawa_live_…"
]]);
file_get_contents("https://api.danadresse.dk/autocomplete?q=rådhuspladsen", false, $ctx);
http.Get("https://dawa.aws.dk/autocomplete?q=rådhuspladsen")
req, _ := http.NewRequest("GET",
"https://api.danadresse.dk/autocomplete?q=rådhuspladsen", nil)
req.Header.Set("X-Api-Key", "dawa_live_…")
http.DefaultClient.Do(req)
await http.GetStringAsync( "https://dawa.aws.dk/autocomplete?q=rådhuspladsen");
http.DefaultRequestHeaders.Add("X-Api-Key", "dawa_live_…");
await http.GetStringAsync(
"https://api.danadresse.dk/autocomplete?q=rådhuspladsen");
Fetch building and unit data from the Danish Building and Dwelling Register (BBR). 35 fields per building · auto-updated hourly · the same data source the tax authority uses.
Area, year built, usage code, heating, roofing, exterior-wall material — all in one lookup.
Residence, area, number of rooms, bathroom and kitchen facilities per dwelling/unit.
BBR's official taxonomy mapped to human-readable labels.
We follow Datafordeleren's replication stream — as soon as the municipality updates.
Add one query param on /adresser and get building data in the same response.
Look up directly by BFE number or building ID if you already have it.
curl https://api.danadresse.dk/api/v1/enrich/adresser/{id}/bbr \
-H 'X-Api-Key: dawa_live_…'
Auto-fill property sheets from an address — living area, year built, room count.
Per-property risk profile — exterior-wall material + heating + roof.
Match BBR data against EMO for consultant reports.
Building footprint + insulation status for CO2 models.
The slug /bbr follows DAWA's conventions — same paths, same JSON shape, same UUIDs. See the migration guide for the full picture.
See also