Gå til hovedinnhold
This API is legacy. It stays available for existing integrations; new work uses the Placepoint API.
Note! This documentation is automatically generated. Information may be incomplete or contain errors, especially screenshots and code samples. We'd love your feedback: use the "Did you find what you were looking for?" widget below, the chat in the bottom right, or email support@placepoint.no - we'll get back to you as soon as we can.

Retrieve Person Data of Transaction History

GET 

/transaction/history-persons

Transaction History Person Endpoint

Overview

This API retrieves transaction history related to individuals and properties.

It supports single property / person retrieval, batch downloads, and incremental (delta) sync via change-id and updated-on filters.

The API provides detailed information about property transactions, including transaction details, ownership information, and related metadata. Additionally, it returns specific details about the individuals or entities involved in the transactions, such as their roles (e.g., buyer or seller), identification numbers, and other relevant personal or organizational data.

This API is particularly useful for applications that require historical transaction data, ownership verification, or property-related research and analysis.

Example Requests

curl -X 'GET' \
'https://apis.propcloud.no/api/public/transaction/history-persons?property-id-nma=4601-25-114-0-0' \
-H 'accept: application/json' \
-H 'api-key: YOUR_API_KEY'

Incremental sync example:

curl -X 'GET' \
'https://apis.propcloud.no/api/public/transaction/history-persons?change-id-start=9398808&page=1' \
-H 'accept: application/json' \
-H 'api-key: YOUR_API_KEY'

Response Description

The response is an object with data (the list of rows below), totalPages, and maxChangeId — use maxChangeId + 1 as the next change-id-start to fetch only what changed since the last sync.

KeyDescriptionBeskrivelseSource
transferOfRegistryUnitRightIdUnique identifier for the transaction.
The field is called RettsstiftelseId in Grunnboken with the Norwegian Mapping Authority
Unik identifikator for transaksjonen.
Feltet heter RettsstiftelseId i Grunnboken hos Kartverket
Kartverket
registryUnitRightIdUnique identifier for the registry unit right.
The field is called RegisterenhetsrettId in Grunnboken with the Norwegian Mapping Authority
Unik identifikator for registerenhetsretten.
Feltet heter RegisterenhetsrettId i Grunnboken hos Kartverket
Kartverket
registryUnitRightShareIdUnique identifier for the registry unit right share.
The field is called RegisterenhetsrettsandelId in Grunnboken with the Norwegian Mapping Authority
Unik identifikator for registerenhetsrettsandel.
Feltet heter RegisterenhetsrettsandelId i Grunnboken hos Kartverket
Kartverket
registryUnitIdUnique identifier for the registry unit.
The field is called RegisterenhetId in Grunnboken
Unik identifikator for registerenheten.
Feltet heter RegisterenhetId i Grunnboken hos Kartverket
Kartverket
propertyIdUnique identifier for the property.Unik identifikator for eiendommen.
Feltet heter MatrikkelenhetId i Matrikkelen hos Kartverket
Kartverket
propertyIdNmaUnique identifier for the property, generated by PropCloud based on:
city number, ground number, usage number, lease number, and section number
Unik identifikator for eiendommen generert av PropCloud basert paa:
kommunenummer, gaardsnummer, bruksnummer, festenummer og seksjonsnummer
PropCloud
propertyIdNmaMainIf the object in question is a section or housing association unit, this field gives the main property the object is tied toHvis objektet er en seksjon eller borettslagsenhet, gir dette feltet hoved-eiendommen som objektet er knyttet tilPropCloud
housingAssociationIdNmaUnique identifier for the housing association unit, formatted as organization number-share number, i.e. "924758716-4"Unik identifikator for borettslagsandelen, formatert som organisasjonsnummer-andelsnummer, i.e. "924758716-4"PropCloud
dateThe date when the transaction took placeDato for naar transaksjonen fant stedKartverket
soldOnTheOpenMarketBoolean value. "True" if the property was sold on the open market, otherwise "FalseBoolean-verdi. "True" hvis eiendommen ble solgt paa det aapne markedet, ellers "False"Kartverket
transactionPriceHow much the property was sold forHvor mye eiendommen ble solgt forKartverket
transactionTypeCodeNameType of transaction, i.e. "Fritt salg", "Tvangssalg" etc.Transaksjonstype, for eksempel "Fritt salg", "Tvangssalg" etc.Kartverket
registryUnitRightTypeCodeNameType of registry unit right.Type registerenhetsrett.Kartverket
propertyCountNumber of registry units transferred in the transactionAntall registerenheter overfort i transaksjonenKartverket
personIdUnique identifier for the person in MatrikkelenUnik identifikator for personen i MatrikkelenKartverket
personIdGUnique identifier for the person in GrunnbokenUnik identifikator for personen i GrunnbokenKartverket
personNumberFor physical persons: 6 digit person number (birthdate),
For companies: 9 digit organization number
For fysiske personer: 11-sifret personnummer,
For selskaper: 9-sifret organisasjonsnummer
Kartverket
ownerTypeType of owner, such as individual or companyType eier, for eksempel fysisk person eller selskapKartverket
typeWhether the person was a buyer or seller in the transactionOm personen var kjoper eller selger i transaksjonenKartverket
nameFull name of the buyer / sellerFullt navn paa kjoper / selgerKartverket
numeratorNumerator part of the transaction. Numerator / denominator shows fraction transactedTelleren i transaksjonen. Teller / nevner viser fraksjonen som er transaktertKartverket
denominatorDenominator part of the transaction. Numerator / denominator shows fraction transactedNevneren i transaksjonen. Teller / nevner viser fraksjonen som er transaktertKartverket
batchIdUnique identifier for the batchUnik identifikator for batchenPropCloud
changeTypeThis field indicates whether the document is a new entry or an updated entry. It helps differentiate between newly added documents and those that have been modified.Dette feltet indikerer om dokumentet er en ny oppføring eller en oppdatert oppføring. Det hjelper med å skille mellom nylig tilføyde dokumenter og de som har blitt modifisert.PropCloud
changeIdThis field represents the position of the document in the collection, used as the watermark for incremental sync.Dette feltet representerer posisjonen til dokumentet, brukt som vannmerke for inkrementell synkronisering.PropCloud
updatedOnThis timestamp field records the date and time when the data was uploaded to MongoDB.Dette tidsstempelfeltet registrerer datoen og klokkeslettet når dataene ble lastet opp til MongoDB.PropCloud

Request

Responses

Successful Response

Note! This documentation is automatically generated. Information may be incomplete or contain errors, especially screenshots and code samples. We'd love your feedback: use the "Did you find what you were looking for?" widget below, the chat in the bottom right, or email support@placepoint.no - we'll get back to you as soon as we can.