# Zoopla Manchester Rentals Scraper

**Use case:** 

Scrape Manchester rental listings from Zoopla with price, bedrooms, listing type, image, and URL. Export structured property data to JSON or CSV.

## Input

```json
{
  "searchLocation": "Manchester",
  "maxItems": 50,
  "listingType": "rent"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "propertyId": {
    "label": "Property Id",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "priceDisplay": {
    "label": "Price Display",
    "format": "text"
  },
  "listingType": {
    "label": "Listing Type",
    "format": "text"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "text"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "text"
  },
  "propertyType": {
    "label": "Property Type",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "postcode": {
    "label": "Postcode",
    "format": "text"
  },
  "agent": {
    "label": "Agent",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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