Quickstart guide
Go from nothing to your first address lookup in under 60 seconds. We'll walk you through the whole flow — create an account, get a key, make your first call.
100% compatible drop-in for the official DAWA. Change only the base URL — all your code, parsers and field names keep working unchanged.
curl "https://api.danskadresseapi.dk/dawa/autocomplete?q=Nørrebrogade" \
-H "Authorization: Bearer $ADDR_KEY"See the full comparison: /dawa vs v1 - Search 4.1M Danish addresses
- Get fuzzy matching and typo tolerance
- Fetch postal codes, municipalities, streets
- Use from backend or browser
1. Create a free account
Go to . Just enter your email — we'll send a link to set a password. Or pick "Sign up with Google" if you prefer.
2. Generate your first API key
Once signed in you land on the dashboard. Click "New key" in the "My keys" card. Give it a name (e.g. production) and pick live — server-side.
The key is shown once — copy it right away. It looks like this:
sk_live_AbCdEfGhIjKlMnOpQrStUv12345678903. Make your first call
You're ready. Replace YOUR_API_KEY with your key and call the API. Pick the language you're using:
curl (terminal)
curl "https://api.danskadresseapi.dk/v1/autocomplete?q=N%C3%B8rrebrogade" \
-H "Authorization: Bearer YOUR_API_KEY"JavaScript / Node.js
PHP
Python
4. What you get back
The response is a flat array — DAWA format. Each address has a top-level object with type, tekst etc. plus a data object with the full details:
x and y are WGS84 coordinates (longitude and latitude). tekst is the fully formatted address — perfect for displaying in autocomplete dropdowns.
5. Next steps
You know the basics. Here's what most people do next:
Ready to try it?
The Hobby plan is free forever. No card, no commitment. You'll be up and running in 60 seconds.