Migrate from DAWA in one line

Same paths, same response shape. Just change the base URL and add your X-Api-Key — the rest of your code is unchanged.

Before — DAWA
curl "https://dawa.aws.dk/autocomplete?q=rådhuspladsen"
After — Danadresse
curl "https://api.danadresse.dk/autocomplete?q=rådhuspladsen" \
     -H "X-Api-Key: dawa_live_…"
Before — DAWA
fetch("https://dawa.aws.dk/autocomplete?q=rådhuspladsen")
After — Danadresse
fetch("https://api.danadresse.dk/autocomplete?q=rådhuspladsen", {
  headers: { "X-Api-Key": "dawa_live_…" }
})
Before — DAWA
requests.get("https://dawa.aws.dk/autocomplete",
             params={"q": "rådhuspladsen"})
After — Danadresse
requests.get("https://api.danadresse.dk/autocomplete",
             params={"q": "rådhuspladsen"},
             headers={"X-Api-Key": "dawa_live_…"})
Before — DAWA
$ctx = stream_context_create();
file_get_contents("https://dawa.aws.dk/autocomplete?q=rådhuspladsen", false, $ctx);
After — Danadresse
$ctx = stream_context_create(["http" => [
  "header" => "X-Api-Key: dawa_live_…"
]]);
file_get_contents("https://api.danadresse.dk/autocomplete?q=rådhuspladsen", false, $ctx);
Before — DAWA
http.Get("https://dawa.aws.dk/autocomplete?q=rådhuspladsen")
After — Danadresse
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)
Before — DAWA
await http.GetStringAsync(
  "https://dawa.aws.dk/autocomplete?q=rådhuspladsen");
After — Danadresse
http.DefaultRequestHeaders.Add("X-Api-Key", "dawa_live_…");
await http.GetStringAsync(
  "https://api.danadresse.dk/autocomplete?q=rådhuspladsen");
Get a free key →

WooCommerce Danish address autocomplete · one API call

Add Danish address autocomplete to your WooCommerce checkout without heavy plugins: one fetch call to api.danadresse.dk and customers pick a validated address in two keystrokes.

Status: Live — requires API key (free, no credit card)

What you get

Drop-in for checkout

Replace the address field with an autocomplete input — 5 lines of JS, zero dependencies.

Validated addresses

All 2.7M Danish addresses from DAR — no typos in shipments.

Typo-tolerant search

Customers find 'Rådhuspladsen' even if they type 'Råduhspladsen'.

Example

curl 'https://api.danadresse.dk/autocomplete?q=R%C3%A5dhuspladsen&type=adresse' \
     -H 'X-Api-Key: dawa_live_…'

How it's used

Faster checkout

Customer types 3 characters — API returns address list — form fills automatically.

Fewer returned parcels

Validated address straight from DAR significantly reduces mis-deliveries.

Headless WooCommerce

Use the REST call from Next.js / React checkout just as easily as from vanilla JS.

Drop-in DAWA-compatible

The slug /woocommerce-adresse follows DAWA's conventions — same paths, same JSON shape, same UUIDs. See the migration guide for the full picture.

See also

Free API (2,000 calls/mo) Shopify address API Checkout autocomplete Estate agent bundle Migration checklist

Ready to integrate?

Free key, no credit card, 2,000 calls/month.

Start free →    Read the API docs →