# Facebook Marketplace iPhones NYC Scraper

**Use case:** 

Scrape iPhone listings on Facebook Marketplace in NYC with title, price, location, images, and URL. Export structured marketplace data to CSV.

## Input

```json
{
  "maxItems": 50,
  "searchQueries": [
    {
      "city": "nyc",
      "query": "iphone"
    }
  ],
  "enrichListings": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing Id",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "strikethroughPrice": {
    "label": "Strikethrough Price",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "date"
  },
  "images": {
    "label": "Images",
    "format": "image"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "listingType": {
    "label": "Listing Type",
    "format": "text"
  },
  "isAvailable": {
    "label": "Is Available",
    "format": "text"
  },
  "isPending": {
    "label": "Is Pending",
    "format": "text"
  },
  "isSold": {
    "label": "Is Sold",
    "format": "text"
  },
  "deliveryOptions": {
    "label": "Delivery Options",
    "format": "text"
  },
  "vehicleMake": {
    "label": "Vehicle Make",
    "format": "text"
  },
  "vehicleModel": {
    "label": "Vehicle Model",
    "format": "text"
  },
  "vehicleYear": {
    "label": "Vehicle Year",
    "format": "text"
  }
}
```

## About this Actor

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