Facebook Marketplace Scraper + Discord Alerts avatar
Facebook Marketplace Scraper + Discord Alerts

Pricing

$20.00/month + usage

Go to Store
Facebook Marketplace Scraper + Discord Alerts

Facebook Marketplace Scraper + Discord Alerts

Developed by

Gavin

Gavin

Maintained by Community

An extremely CHEAP and FAST Facebook Marketplace scraper! Best for flippers and resellers. Instantly finds and sends the newest listings to your Discord for rapid sourcing and real-time alerts. Also supports mass scraping of listing info for analysis or research.

0.0 (0)

Pricing

$20.00/month + usage

2

Total users

3

Monthly users

3

Runs succeeded

>99%

Last modified

5 days ago

You can access the Facebook Marketplace Scraper + Discord Alerts programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9 "searchTerms": [
10 "iPhone",
11 "PS5",
12 ],
13 "minPrices": [
14 "50",
15 "100",
16 ],
17 "maxPrices": [
18 "2000",
19 "1000",
20 ],
21 "daysListed": [
22 "1",
23 "7",
24 ],
25 "filterKeywords": [
26 "iphone",
27 "i-phone",
28 "ps5",
29 "playstation 5",
30 ],
31 "listingsPerSearch": 5,
32 "proxyConfiguration": {
33 "useApifyProxy": True,
34 "apifyProxyGroups": ["RESIDENTIAL"],
35 "apifyProxyCountry": "CA",
36 },
37 "latitude": "43.653225",
38 "longitude": "-79.383186",
39}
40
41# Run the Actor and wait for it to finish
42run = client.actor("futurafree/facebook-marketplace-scraper-discord-alerts").call(run_input=run_input)
43
44# Fetch and print Actor results from the run's dataset (if there are any)
45print("πŸ’Ύ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
46for item in client.dataset(run["defaultDatasetId"]).iterate_items():
47 print(item)
48
49# πŸ“š Want to learn more πŸ“–? Go to β†’ https://docs.apify.com/api/client/python/docs/quick-start

Facebook Marketplace Scraper + Discord Alerts API in Python

The Apify API client for Python is the official library that allows you to use Facebook Marketplace Scraper + Discord Alerts API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include: