# Rightmove Rental Listings Extractor

**Use case:** 

Scrape Rightmove rental listings for Manchester with rent, bedrooms, property type, agent, availability, and URLs.

## Input

```json
{
  "searchLocation": "Manchester",
  "channel": "RENT",
  "maxResults": 75,
  "radius": "3.0",
  "minBeds": 1,
  "maxBeds": 3,
  "propertyType": "",
  "sortType": "6",
  "includeSSTC": false
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Photo",
    "format": "image"
  },
  "propertyId": {
    "label": "Property ID"
  },
  "displayAddress": {
    "label": "Address"
  },
  "price": {
    "label": "Price (£)",
    "format": "number"
  },
  "displayPrice": {
    "label": "Display price"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "propertyType": {
    "label": "Property type"
  },
  "tenure": {
    "label": "Tenure"
  },
  "displaySize": {
    "label": "Size"
  },
  "agent": {
    "label": "Agent"
  },
  "addedOn": {
    "label": "Added"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Rightmove Scraper](https://apify.com/automation-lab/rightmove-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/rightmove-scraper) to learn more, explore other use cases, and run it yourself.