# Find Undervalued Used Cars on Facebook Marketplace

**Use case:** 

Extract every used car listing in any US city from Facebook Marketplace. Get VIN, mileage, seller rating, and price — no login needed.

## Input

```json
{
  "start_urls": [],
  "search_query": "vehicles",
  "city_slug": "losangeles",
  "min_price": 2000,
  "max_price": 15000,
  "price_chunk_size": 100,
  "max_results": 20,
  "concurrency": 5,
  "days_since_listed": 1,
  "sort_by": "creation_time_descend",
  "item_condition": "used",
  "radius": 100,
  "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.