GET api/Street?houseNoOrName={houseNoOrName}&Street={Street}&town={town}&Postcode={Postcode}&Uprn={Uprn}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
houseNoOrName

string

Required

Street

string

Required

town

string

Required

Postcode

string

Required

Uprn

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Street
NameDescriptionTypeAdditional information
MapEast

decimal number

None.

MapNorth

decimal number

None.

Details

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MapEast": 1.1,
    "MapNorth": 2.1,
    "Details": "sample string 3"
  },
  {
    "MapEast": 1.1,
    "MapNorth": 2.1,
    "Details": "sample string 3"
  }
]

text/xml

Sample:
<ArrayOfStreet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Llpg2.core.Entities">
  <Street>
    <Details>sample string 3</Details>
    <MapEast>1.1</MapEast>
    <MapNorth>2.1</MapNorth>
  </Street>
  <Street>
    <Details>sample string 3</Details>
    <MapEast>1.1</MapEast>
    <MapNorth>2.1</MapNorth>
  </Street>
</ArrayOfStreet>