
Facebook Marketplace Scraper + Discord Alerts
Pricing
$20.00/month + usage

Facebook Marketplace Scraper + Discord Alerts
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.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "searchTerms": [12 "iPhone",13 "PS5"14 ],15 "minPrices": [16 "50",17 "100"18 ],19 "maxPrices": [20 "2000",21 "1000"22 ],23 "daysListed": [24 "1",25 "7"26 ],27 "filterKeywords": [28 "iphone",29 "i-phone",30 "ps5",31 "playstation 5"32 ],33 "listingsPerSearch": 5,34 "proxyConfiguration": {35 "useApifyProxy": true,36 "apifyProxyGroups": [37 "RESIDENTIAL"38 ],39 "apifyProxyCountry": "CA"40 },41 "latitude": "43.653225",42 "longitude": "-79.383186"43};44
45// Run the Actor and wait for it to finish46const run = await client.actor("futurafree/facebook-marketplace-scraper-discord-alerts").call(input);47
48// Fetch and print Actor results from the run's dataset (if any)49console.log('Results from dataset');50console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);51const { items } = await client.dataset(run.defaultDatasetId).listItems();52items.forEach((item) => {53 console.dir(item);54});55
56// π Want to learn more π? Go to β https://docs.apify.com/api/client/js/docs
Facebook Marketplace Scraper + Discord Alerts API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use Facebook Marketplace Scraper + Discord Alerts API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-client
Other API clients include: