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 →

Checkout address autocomplete Denmark · validated in 30 ms

Stop losing customers at checkout: drop-in address autocomplete for all Danish checkout flows returns validated addresses in under 30 ms — regardless of framework.

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

What you get

Under 30 ms P95

Meilisearch index of 2.7M addresses served from Danish infrastructure — low latency for DK users.

Framework-agnostic

Vanilla JS, React, Vue, Svelte, Angular — one REST call, no SDK required.

Fuzzy + prefix search

Finds addresses on partial match and typos — customers never need to spell perfectly.

Example

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

How it's used

E-commerce checkout

Replace manual address fields with typeahead — reduce form abandonment at checkout.

Booking & reservations

Validate delivery address in real time for hotel, restaurant, or service bookings.

CRM lead capture

Capture clean, validated address at form submission — no data cleansing afterwards.

Drop-in DAWA-compatible

The slug /checkout-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) WooCommerce autocomplete Shopify address API Estate agent bundle Migration checklist

Ready to integrate?

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

Start free →    Read the API docs →