# Scrape Rental Listings on Facebook Marketplace

**Use case:** 

Find apartments, houses, and rooms for rent on Facebook Marketplace by city and price range. Monitor new listings daily before they fill up

## Input

```json
{
  "start_urls": [],
  "search_query": "apartments for rent",
  "city_slug": "sanfrancisco",
  "min_price": 1000,
  "max_price": 5000,
  "price_chunk_size": 250,
  "max_results": 30,
  "concurrency": 5,
  "days_since_listed": 7,
  "sort_by": "creation_time_descend",
  "item_condition": "all",
  "radius": 50,
  "proxy_country": "us"
}
```

## Output

```json
{
  "url": {
    "label": "Link",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "city_slug": {
    "label": "City",
    "format": "text"
  },
  "seller_name": {
    "label": "Seller",
    "format": "text"
  },
  "seller_rating": {
    "label": "Rating",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Marketplace Scraper 💎](https://apify.com/scraperpro/facebook-marketplace-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scraperpro/facebook-marketplace-scraper) to learn more, explore other use cases, and run it yourself.