# Zoopla Property Data API: UK Listings as JSON

**Use case:** 

UK property listings as JSON with no Zoopla API key or approval: address, property type, price, priceValue, bedrooms, bathrooms, listing URL.

## Input

```json
{
  "mode": "search",
  "locations": [
    "Sheffield"
  ],
  "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.