GET Location/Address?apiKey={apiKey}&postcode={postcode}&house={house}

Documentation for 'Address'.

Request Information

Parameters

NameDescriptionAdditional information
apiKey
Documentation for 'apiKey'.

Define this parameter in the request URI.

postcode
Documentation for 'postcode'.

Define this parameter in the request URI.

house
Documentation for 'house'.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Validation": {
    "isSuccess": true,
    "Message": "sample string 2"
  },
  "Latitude": "sample string 1",
  "Longitude": "sample string 2",
  "Addresses": [
    {
      "Address1": "sample string 1",
      "Address2": "sample string 2",
      "Address3": "sample string 3",
      "Address4": "sample string 4",
      "Locale": "sample string 5",
      "Town_City": "sample string 6",
      "County": "sample string 7"
    },
    {
      "Address1": "sample string 1",
      "Address2": "sample string 2",
      "Address3": "sample string 3",
      "Address4": "sample string 4",
      "Locale": "sample string 5",
      "Town_City": "sample string 6",
      "County": "sample string 7"
    },
    {
      "Address1": "sample string 1",
      "Address2": "sample string 2",
      "Address3": "sample string 3",
      "Address4": "sample string 4",
      "Locale": "sample string 5",
      "Town_City": "sample string 6",
      "County": "sample string 7"
    }
  ]
}

application/xml, text/xml

Sample:
<dtoAddresses xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCModel">
  <Addresses>
    <dtoAddress>
      <Address1>sample string 1</Address1>
      <Address2>sample string 2</Address2>
      <Address3>sample string 3</Address3>
      <Address4>sample string 4</Address4>
      <County>sample string 7</County>
      <Locale>sample string 5</Locale>
      <Town_City>sample string 6</Town_City>
    </dtoAddress>
    <dtoAddress>
      <Address1>sample string 1</Address1>
      <Address2>sample string 2</Address2>
      <Address3>sample string 3</Address3>
      <Address4>sample string 4</Address4>
      <County>sample string 7</County>
      <Locale>sample string 5</Locale>
      <Town_City>sample string 6</Town_City>
    </dtoAddress>
    <dtoAddress>
      <Address1>sample string 1</Address1>
      <Address2>sample string 2</Address2>
      <Address3>sample string 3</Address3>
      <Address4>sample string 4</Address4>
      <County>sample string 7</County>
      <Locale>sample string 5</Locale>
      <Town_City>sample string 6</Town_City>
    </dtoAddress>
  </Addresses>
  <Latitude>sample string 1</Latitude>
  <Longitude>sample string 2</Longitude>
  <Validation>
    <Message>sample string 2</Message>
    <isSuccess>true</isSuccess>
  </Validation>
</dtoAddresses>