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");
Integrate Danish address validation into your Shopify store via Theme App Extensions or headless Hydrogen: one API call returns validated DAR addresses and eliminates failed deliveries.
Use the Fetch API from your Shopify Liquid extension — CORS-open API, no server proxy needed.
Call autocomplete directly from your React Server Component or client component.
The response includes postcode + city — fill all address fields with a single call.
curl 'https://api.danadresse.dk/autocomplete?q=R%C3%A5dhuspladsen&type=adresse' \
-H 'X-Api-Key: dawa_live_…'
Faster address input increases conversion rate in the checkout flow.
Send validated address directly to GLS/PostNord API — no manual corrections.
Validate delivery addresses for business customers with full address string and road code.
The slug /shopify-adresse follows DAWA's conventions — same paths, same JSON shape, same UUIDs. See the migration guide for the full picture.
See also