DanskAdresseAPIv1
Matrikel

Search / list cadastral parcels

Searches and lists cadastral parcels. Identified by cadastral district code plus cadastral number. include fetches related data along with it.

GET/v1/jordstykker

Authentication

Authorizationstringheaderrequired

Your API key as a Bearer token.

Parameters

qstringquery

Free-text/prefix search.

limitintegerquery

Maximum number of results. The limit is set per endpoint — see default and maximum.

ejerlavskodestringquery

Filter by cadastral district (ejerlav) code.

kommunekodestringquery

Filter by municipality code.

includestringquery

Comma-separated list of extra datasets to include in the response.

Request

curl --request GET \
  --url "https://api.danskadresseapi.dk/v1/jordstykker" \
  --header "Authorization: Bearer $API_NOEGLE"

Response

application/json

Liste

countinteger
resultsobject[]
200Eksempel
{
  "count": 0,
  "results": [
    {}
  ]
}
401Missing key
{
  "error": {
    "code": "unauthorized",
    "message": "Missing or invalid API key."
  }
}