Overview
This section describes the available REST endpoint for retrieving personal property registry information.
Using a UUID obtained from a previous search, this service returns summary information for persons/companies in the personal property registry. The response format can be controlled using optional query parameters, supporting OIO XML, XHTML, and TMV XHTML formats.
Endpoints
PersonSummarisk
Endpoint URL: personbog/{uuid}
Method |
GET |
Description |
Retrieve summary information for a person/company in the personal property registry using their UUID. |
Input |
Path parameter:
Optional query parameters:
|
Output |
Personal property registry data in the requested format (OIO XML, XHTML, or TMV XHTML). The formatting of XHTML and TMV XHTML responses is not documented in detail and may change without notice. |
Error handling |
Standard HTTP error codes for invalid input or lack of access |
Interaction pattern |
Query response |
Example request:
GET /personbog/7a0f2d51-9636-422b-a1b2-0300e0adcd2f?xhtml=false&tmvxhtml=false HTTP/1.1
accept: */*
Example response:
<LoesoereSummariskHentResultat xmlns="http://rep.oio.dk/tinglysning.dk/service/message/elektroniskakt/1/" xmlns:ns="http://rep.oio.dk/tinglysning.dk/schema/elektroniskakt/1/" xmlns:ns1="http://rep.oio.dk/tinglysning.dk/schema/model/1/" xmlns:ns2="http://rep.oio.dk/cpr.dk/xml/schemas/core/2005/03/18/" xmlns:ns3="http://rep.oio.dk/itst.dk/xml/schemas/2006/01/17/" xmlns:xd="http://www.w3.org/2000/09/xmldsig#">
<ns:LoesoereSummarisk>
<ns:LoesoereStamoplysninger>
<ns1:LoesoereStruktur>
<ns1:LoesoereIdentifikator>
<ns2:PersonCivilRegistrationIdentifier>**********</ns2:PersonCivilRegistrationIdentifier>
</ns1:LoesoereIdentifikator>
<ns3:PersonName>John Doe</ns3:PersonName>
</ns1:LoesoereStruktur>
</ns:LoesoereStamoplysninger>
<ns1:ModelId>50153283700</ns1:ModelId>
</ns:LoesoereSummarisk>
<ns:UdskriftDatoTid>2026-05-19T14:05:29.073+02:00</ns:UdskriftDatoTid>
<ns:AnmeldelseModtagetIndikator>false</ns:AnmeldelseModtagetIndikator>
<xd:Signature>
<xd:SignedInfo>
<xd:CanonicalizationMethod Algorithm=""/>
<xd:SignatureMethod Algorithm=""/>
<xd:Reference>
<xd:DigestMethod Algorithm=""/>
<xd:DigestValue/>
</xd:Reference>
</xd:SignedInfo>
<xd:SignatureValue/>
</xd:Signature>
</LoesoereSummariskHentResultat>
SoegPersonbog
Endpoint URL: soegpersonbog
Method |
GET |
Description |
Search for persons/companies in the personal property registry using name and CPR number. |
Input |
Query parameters:
|
Output |
JSON response containing matching persons/companies with basic information (incl. |
Error handling |
|
Interaction pattern |
Query response |
Example request:
GET /soegpersonbog?navn=John%20Doe&cpr=1234567890&cvr=&nodoks=false HTTP/1.1
Example response:
{
"items": [
{
"cpr": "1234567890",
"cvr": null,
"dokumenttype": null,
"loesoeretekst": null,
"navn": "John Doe",
"personTal": null,
"uuid": "f422a79a-4886-4ce4-a530-5098daf7d5e3"
}
]
}
{
"timestamp": "2026-05-19T12:23:49.121Z",
"status": 429,
"error": "Too Many Requests",
"path": "/soegpersonbog"
}
SoegPersonbogCvr
Endpoint URL: soegpersonbogcvr
Method |
GET |
Description |
Search for persons/companies in the personal property registry using CVR number or name with/without date of birth. |
Input |
Query parameters (mutually exclusive combinations):
|
Output |
JSON response containing matching persons/companies with basic information (incl. |
Error handling |
|
Interaction pattern |
Query response |
Example request:
GET /soegpersonbogcvr?cvr=15231599 HTTP/1.1
Example response:
{
"items": [
{
"cpr": null,
"cvr": "15231599",
"dokumenttype": null,
"loesoeretekst": null,
"navn": "DXC Technology Danmark A/S",
"personTal": null,
"uuid": "f1070dbd-c97f-488b-9ce7-8e4f68b1ad79"
}
]
}