# 获取英国在售房源与价格数据

**Use case:** 

按城镇或邮编区获取英国在售房源数据：每条记录包含地址、房型、售价与数值化价格、卧室与卫浴数量以及房源链接，可导出为 CSV 或 Excel。

## Input

```json
{
  "mode": "search",
  "locations": [
    "Nottingham"
  ],
  "propertyType": "For sale",
  "maxResultsPerSearch": 3
}
```

## Output

```json
{
  "address": {
    "label": "Address",
    "format": "string"
  },
  "propertyType": {
    "label": "Property type",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "priceValue": {
    "label": "Price value",
    "format": "number"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "integer"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "integer"
  },
  "tenure": {
    "label": "Tenure",
    "format": "string"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Zoopla UK Property API](https://apify.com/johnvc/zoopla-property-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/zoopla-property-api) to learn more, explore other use cases, and run it yourself.