Overview
This section describes the available REST endpoints for retrieving information about land registry objects (tinglysningsobjekter).
The service provides three main functionalities: retrieving object information by UUID or alias, finding objects that have changed within a date range, and finding the latest change date for a specific object.
Endpoints
TinglysningsobjektByUuid
Endpoint URL: tinglysningsobjekter/uuid/{uuid}
Method |
GET |
Description |
Retrieve land registry object information using its UUID. |
Input |
Path parameter:
|
Output |
JSON response containing land registry object information. |
Error handling |
Standard HTTP error codes for invalid input or lack of access |
Interaction pattern |
Query response |
Example request:
GET /tinglysningsobjekter/uuid/15963017-fb2b-417d-83d2-61442cde300f HTTP/1.1
accept: */*
Example response:
{
"DokumentTinglysningsobjekterHentResultat": {
"EjendomIdentifikator": {
"BestemtFastEjendomNummer":"2210859",
"Matrikel": [
{
"CadastralDistrictName":"Assendløse By, Dåstrup",
"CadastralDistrictIdentifier":"50251",
"Matrikelnummer":"0014e"
}
]
}
}
}
TinglysningsobjektByAlias
Endpoint URL: tinglysningsobjekter/alias/{alias}
Method |
GET |
Description |
Retrieve land registry object information using its alias (date-sequence number format). |
Input |
Path parameter:
|
Output |
JSON response containing land registry object information. |
Error handling |
Standard HTTP error codes for invalid input or lack of access |
Interaction pattern |
Query response |
Example request:
GET /tinglysningsobjekter/alias/20221209-1000046002 HTTP/1.1
accept: */*
Example response:
{
"DokumentTinglysningsobjekterHentResultat": {
"BilIdentifikator": {
"Stelnummer":"ZAM331B00EB111775"
}
}
}
AendredeTinglysningsobjekter
Endpoint URL: tinglysningsobjekter/aendringer
Method |
POST |
Description |
Find land registry objects that have been modified within a specified date range. Uses POST method with JSON request body. |
Input |
JSON request body containing search criteria (registry book, date range, pagination). |
Output |
JSON response containing a list of modified objects with their modification dates. |
Error handling |
|
Interaction pattern |
Query response |
Example request:
POST /tinglysningsobjekter/aendringer HTTP/1.1
accept: */*
Content-Type: application/x-www-form-urlencoded
"body": {
"bog" : "EJENDOM",
"datoFra": "2025-01-01",
"datoTil": "2025-01-20",
"fraSide": "5"
}
Example response:
{
"AendredeTinglysningsobjekterHentResultat": null
}
SenesteAendring
Endpoint URL: tinglysningsobjekter/senesteaendring
Method |
POST |
Description |
Find the latest modification date for a specific land registry object. Uses POST method with JSON request body. |
Input |
JSON request body containing object identifier. |
Output |
JSON response containing the latest modification date. |
Error handling |
|
Interaction pattern |
Query response |
Example request:
POST /tinglysningsobjekter/senesteaendring HTTP/1.1
accept: */*
Content-Type: application/x-www-form-urlencoded
"body": {
"bilIdentifikator": {
"stelnummer": "VF7U6UF0012353662"
}
}
Example response:
{
"SenesteAendringTinglysningsobjektHentResultat": {
"AendringsDato": "2026-05-15T15:36:52.365+02:00"
}
}