Retrieve a list of house price estimates for the requested area.

area_zed_indices(postcode = NULL, area_type = NULL, output_type = NULL,
  page_number = NULL, page_size = NULL, API_key = NULL,
  ordering = "descending")

Arguments

postcode

A string. Valid UK postcode.

area_type

A string. Area type: "postcodes", "streets", "outcodes", "areas", "towns", "counties". Read the API documentation for details.

output_type

A string. Required output: "outcode", "area", "town", "county", "country". Read the API documentation for details.

page_number

An integer. The page number of results to request, default is 1.

page_size

An integer. The size of each page of results, default is 10, maximum is 20.

API_key

An API key from Zoopla.

ordering

A string. The order in which the results should be returned in, either "descending" (default) or "ascending".

Value

A list.

References

http://developer.zoopla.com/docs/read/area_zed_indices

Examples

# NOT RUN {
area_zed_indices("sw185rw", "postcodes", "outcode", 1, 10, "YOUR_API_KEY", "descending")
area_zed_indices(postcode = "sw185rw", area_type = "postcodes",
output_type = "outcode", API_key = "YOUR_API_KEY")
# }