auto_complete_deprecated
Provides autocomplete suggestions for property listings or price estimates on Zoopla by entering search terms, helping users find relevant UK property data quickly.
Instructions
Get auto complete suggestion by term or phrase
Query Parameters:
search_term (Required): Example value: greenwich
search_type: One of the following properties|listings. Use listings value to get suggestion for .../properties/list endpoint. Use properties value to get suggestion for .../house-prices/estimate endpoint.
Responses:
200 (Success): Successful response
Content-Type:
application/json
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| search_term | Yes | Example value: greenwich | |
| search_type | No | One of the following properties|listings. Use listings value to get suggestion for .../properties/list endpoint. Use properties value to get suggestion for .../house-prices/estimate endpoint. |
Input Schema (JSON Schema)
{
"properties": {
"search_term": {
"description": "Example value: greenwich",
"type": "string"
},
"search_type": {
"description": "One of the following properties|listings. Use listings value to get suggestion for .../properties/list endpoint. Use properties value to get suggestion for .../house-prices/estimate endpoint.",
"type": "string"
}
},
"required": [
"search_term"
],
"type": "object"
}