GET api/property/{id}/historicalprices?pageNumber={pageNumber}&pageSize={pageSize}

Get historical prices for a property by its Id Processes this historical price API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The id of the property to get.

integer

Required

pageNumber

The page number value supplied with the request.

integer

Default value is 1

pageSize

The page size value supplied with the request.

integer

Default value is 20

Body Parameters

None.

Response Information

Resource Description

A list of prices

PagedCollectionDataContractOfHistoricalPriceDataContract
NameDescriptionTypeAdditional information
TotalCount

The total count value.

integer

None.

CurrentCount

The current count value.

integer

None.

PageSize

The page size value.

integer

None.

PageNumber

The page number value.

integer

None.

Collection

The collection of collection.

Collection of HistoricalPriceDataContract

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "CurrentCount": 2,
  "PageSize": 1,
  "PageNumber": 1,
  "Collection": [
    {
      "TransactionId": "082241f3-e440-4f7e-a477-f3ffbb92477d",
      "Price": 2,
      "DateTime": "2026-07-23T08:24:09.9726023Z",
      "Postcode": "sample string 4",
      "Outcode": "sample string 5",
      "Incode": "sample string 6",
      "PropertyType": "sample string 7",
      "StyleType": "sample string 8",
      "LeaseType": "sample string 9",
      "NumberParsed": 1,
      "NumberSuffix": "sample string 10",
      "Number": "sample string 11",
      "BuildingName": "sample string 12",
      "Latitude": 13.1,
      "Longitude": 14.1,
      "LatitudeLongitude": "13.1,14.1",
      "AddressId": "sample string 15"
    },
    {
      "TransactionId": "082241f3-e440-4f7e-a477-f3ffbb92477d",
      "Price": 2,
      "DateTime": "2026-07-23T08:24:09.9726023Z",
      "Postcode": "sample string 4",
      "Outcode": "sample string 5",
      "Incode": "sample string 6",
      "PropertyType": "sample string 7",
      "StyleType": "sample string 8",
      "LeaseType": "sample string 9",
      "NumberParsed": 1,
      "NumberSuffix": "sample string 10",
      "Number": "sample string 11",
      "BuildingName": "sample string 12",
      "Latitude": 13.1,
      "Longitude": 14.1,
      "LatitudeLongitude": "13.1,14.1",
      "AddressId": "sample string 15"
    }
  ]
}