DanskAdresseAPIv1
Adresser

Batch reverse geocoding (up to 100 points) — requires Pro or higher

Counts as one call. Preserves the input order. Requires the Pro plan or higher.

POST/v1/reverse/batchPro

Authentication

Authorizationstringheaderrequired

Your API key as a Bearer token.

Request

curl --request POST \
  --url "https://api.danskadresseapi.dk/v1/reverse/batch" \
  --header "Authorization: Bearer $API_NOEGLE" \
  --header "Content-Type: application/json" \
  --data '{}'

Response

application/json

Resultater pr. punkt

countinteger
resultsobject[]
Show child attributes(3)
results.idxinteger
results.inputobject
results.matchesobject[]
200Eksempel
{
  "count": 0,
  "results": [
    {
      "idx": 0,
      "input": {},
      "matches": [
        {}
      ]
    }
  ]
}
401Missing key
{
  "error": {
    "code": "unauthorized",
    "message": "Missing or invalid API key."
  }
}