# Facebook Marketplace Scraper by Keyword & City

**Use case:** 

Scrape any Facebook Marketplace listings by keyword and city. Export titles, prices, locations, and seller info as JSON, CSV, or Excel — no code needed.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.facebook.com/marketplace/montreal/search?query=iphone%2013"
    }
  ],
  "itemUrls": [
    {
      "url": "https://www.facebook.com/marketplace/item/1234567890123456/"
    }
  ],
  "keywordSearches": [
    {
      "query": "gaming console",
      "locationSlug": "sanfrancisco"
    }
  ],
  "vehicleSearches": [
    {
      "make": "honda",
      "locationSlug": "montreal"
    }
  ],
  "vehicleTransmission": "all",
  "sortBy": "creation_time_descend",
  "exactMatch": false,
  "dateListed": "last_7_days",
  "availability": "available",
  "maxListings": 50,
  "fetchDetails": true,
  "deduplicateListings": true
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "location": {
    "label": "Location"
  },
  "condition": {
    "label": "Condition"
  },
  "seller": {
    "label": "Seller"
  },
  "description": {
    "label": "Description"
  },
  "url": {
    "label": "Url"
  },
  "sourceUrl": {
    "label": "Source url"
  }
}
```

## About this Actor

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