house_pricesv2estimate
Estimate UK house prices for specific geographic areas using Zoopla property data to inform buying, selling, or investment decisions.
Instructions
Returned list of estimated house prices
Query Parameters:
geoIdentifier (Required): The value of 'urlPath' field returned in .../house-prices/v2/auto-complete endpoint OR the value of 'id' field returned in .../house-prices/v2/get-area endpoint.
after: The offset to ignore for paging purpose.
first: The number of items per response
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| geoIdentifier | Yes | The value of 'urlPath' field returned in .../house-prices/v2/auto-complete endpoint OR the value of 'id' field returned in .../house-prices/v2/get-area endpoint. | |
| after | No | The offset to ignore for paging purpose. | 0 |
| first | No | The number of items per response | 20 |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"default": "0",
"description": "The offset to ignore for paging purpose.",
"type": "number"
},
"first": {
"default": "20",
"description": "The number of items per response",
"type": "number"
},
"geoIdentifier": {
"description": "The value of 'urlPath' field returned in .../house-prices/v2/auto-complete endpoint OR the value of 'id' field returned in .../house-prices/v2/get-area endpoint.",
"type": "string"
}
},
"required": [
"geoIdentifier"
],
"type": "object"
}