MarketplaceActor
Pricing
$10.00/month + usage
Go to Apify Store
Deprecated
MarketplaceActor
facebook marketplace actor to get result base search
Pricing
$10.00/month + usage
Rating
0.0
(0)
Developer
atutest
Maintained by Community
Actor stats
0
Bookmarked
1
Total users
1
Monthly active users
10 months ago
Last modified
Categories
Share
Facebook Marketplace Scraper
This Apify actor scrapes product listings from Facebook Marketplace based on search criteria and location.
Features
- Search products by keyword and location
- Filter results by price range
- Configurable maximum number of items to scrape
- Extracts product title, price, location, link, and image URL
- Handles infinite scroll to load more items
- Built with aiohttp for efficient web scraping
Input Parameters
The actor accepts the following input parameters:
cookies(Required): Facebook authentication cookies object containing at least:c_user: Your Facebook user ID cookiexs: Your Facebook session cookie- Additional cookies like
franddatrare recommended
search_term(Required): The product or category to search forlocation(Required): The location to search in (city, state, or zip code)max_items(Optional): Maximum number of items to scrape (default: 100, max: 1000)price_min(Optional): Minimum price filterprice_max(Optional): Maximum price filter
Example input:
{"cookies": {"c_user": "100XXXXXXXXXXXXX","xs": "your_xs_cookie_value","fr": "your_fr_cookie_value","datr": "your_datr_cookie_value"},"search_term": "thinkpad","location": "mn","max_items": 100,"price_min": 100,"price_max": 1000}
Getting Facebook Cookies
To get your Facebook cookies:
- Log into Facebook in your browser
- Open Developer Tools (F12 or right-click -> Inspect)
- Go to the "Application" or "Storage" tab
- Under "Cookies", select "https://www.facebook.com"
- Find and copy the values for at least
c_userandxscookies - Optionally copy other cookies like
franddatr
Output Format
The actor outputs JSON objects with the following structure:
{"title": "Product Title","price": "$XX.XX","location": "City, State","link": "https://facebook.com/marketplace/item/...","image_url": "https://...","timestamp": 1234567890}
Usage
- Create a new task for this actor in your Apify account
- Configure the input parameters including your Facebook cookies
- Run the task and wait for results
- Access the scraped data in the "Dataset" tab of your task
Notes
- The actor requires valid Facebook cookies to access Marketplace
- Cookies must include at least
c_userandxsvalues - Rate limiting and delays are implemented to prevent blocking
- Error handling is in place for resilient scraping
- The actor respects Facebook's robots.txt and implements reasonable delays
License
This project is licensed under the MIT License - see the LICENSE file for details.