GET 1.0/internal/valuation?postcode={postcode}&street={street}

Description

Gets a list of Sold Property Records from the Land Registry

URI Parameters

Name Description Type Additional information
postCode

PostCode used to Search for Sold Properties

string

Required

street

Optional, if no properties are found within the PostCode it will then search using this and the PostCode area

string

Default value is

None.

None.

Collection of SoldPropertyDetails
Name Description Type Additional information
Address

string

Required

Price

decimal number

Required

SoldDate

string

Required

PropertyType

string

Required

IsNewBuild

boolean

Required

Tenure

string

Required

application/json, text/json

Sample:
[
  {
    "address": "sample string 1",
    "price": 2.0,
    "soldDate": "sample string 3",
    "propertyType": "sample string 4",
    "isNewBuild": true,
    "tenure": "sample string 6"
  },
  {
    "address": "sample string 1",
    "price": 2.0,
    "soldDate": "sample string 3",
    "propertyType": "sample string 4",
    "isNewBuild": true,
    "tenure": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSoldPropertyDetails xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <SoldPropertyDetails>
    <Address>sample string 1</Address>
    <Price>2</Price>
    <SoldDate>sample string 3</SoldDate>
    <PropertyType>sample string 4</PropertyType>
    <IsNewBuild>true</IsNewBuild>
    <Tenure>sample string 6</Tenure>
  </SoldPropertyDetails>
  <SoldPropertyDetails>
    <Address>sample string 1</Address>
    <Price>2</Price>
    <SoldDate>sample string 3</SoldDate>
    <PropertyType>sample string 4</PropertyType>
    <IsNewBuild>true</IsNewBuild>
    <Tenure>sample string 6</Tenure>
  </SoldPropertyDetails>
</ArrayOfSoldPropertyDetails>