Zed-Index

Description: Retrieve the Zoopla.co.uk Zed-Index! for a requested area.
Access URI: https://api.zoopla.co.uk/api/v1/zed_index

Input Parameters

This method only recognises the standard area based input parameters, but restricts the possible values of output_type to those detailed below.

Parameter name Description
output_type The output_type parameter can only be one of the following values:
  • town
  • outcode
  • county
  • country
Any other value specified will result in an error being generated.

Example request

To request the outcode Zed-Index! for the outcode "NW10" the followed request would be made:

https://api.zoopla.co.uk/api/v1/zed_index?area=NW10&output_type=outcode&api_key=... 

Generated output

In addition to the standard are location parameters, the output parameters detailed below are also generated.

Key name Description
area_url A fully qualified URL pointing to the returned Zed Index! on the www.zoopla.co.uk Web site
zed_index Most recent Zed-Index! for the area requested.
zed_index_3month Zed-Index! as of 3 months ago.
zed_index_6month Zed-Index! as of 6 months ago.
zed_index_1year Zed-Index! as of 1 year ago.
zed_index_2year Zed-Index! as of 2 year ago.
zed_index_3year Zed-Index! as of 3 years ago.
zed_index_4year Zed-Index! as of 4 years ago.
zed_index_5year Zed-Index! as of 5 years ago.

Example XML output

<response>

    <area_name>Victoria Road, London NW10</area_name> 

    <street>Victoria Road</street> 

    <town>London</town> 

    <!-- this method only produces an outcode for postcode --> 

    <postcode>NW10</postcode> 

    <county>London</county> 

    <country>England</country> 

    <bounding_box> 

        <latitude_min>51.5410</latitude_min> 

        <latitude_max>51.5410</latitude_max> 

        <longitude_min>-0.2487</longitude_min> 

        <longitude_max>-0.2487</longitude_max> 

    </bounding_box> 

    <area_url>https://www.zoopla.co.uk/home-values/london/victoria-road-NW10/</area_url> 

    <zed_index>297885</zed_index> 

    <zed_index_3month>285799</zed_index_3month> 

    <zed_index_6month>307063</zed_index_6month> 

    <zed_index_1year>285799</zed_index_1year> 

    <zed_index_2year>307063</zed_index_2year> 

    <zed_index_3year>307063</zed_index_3year> 

    <zed_index_4year>307063</zed_index_4year> 

    <zed_index_5year>307063</zed_index_5year> 


<response>

Example JSON output

{ 

    "area_name":"Victoria Road, London NW10", 

    "street":"Victoria Road", 

    "town":"London", 

    "postcode":"NW10", 

    "county":"London", 

    "country":"England", 

    "bounding_box":{ 

        "latitide_min":"51.5410", 

        "latitide_max":"51.5410", 

        "longitude_min":"-0.2487", 

        "longitude_max":"-0.2487", 

    }, 

    "area_url":"https://www.zoopla.co.uk/home-values/london/victoria-road-NW10/",

    "zed_index":"297885", 

    "zed_index_3month":"285799", 

    "zed_index_6month":"285799", 

    "zed_index_1year":"285799", 

    "zed_index_2year":"307063", 

    "zed_index_3year":"307063", 

    "zed_index_4year":"307063", 

    "zed_index_5year":"307063", 

}