Lightweight Facebook Pages Scraper avatar
Lightweight Facebook Pages Scraper
Try for free

No credit card required

View all Actors
Lightweight Facebook Pages Scraper

Lightweight Facebook Pages Scraper

oussemafr/lightweight-facebook-pages-scraper
Try for free

No credit card required

Scrape detailed Facebook page information efficiently and cost-effectively with our best scraper. Extract valuable data like page names, URLs, contact details, addresses, likes, and followers for competitive analysis, market research, trend monitoring, and social media analysis.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "start_urls": [
11        {
12            "url": "https://www.facebook.com/humansofnewyork"
13        },
14        {
15            "url": "https://www.facebook.com/HiltonGardenInnMontrealAirport/"
16        }
17    ],
18    "proxyUrls": {
19        "useApifyProxy": true,
20        "apifyProxyGroups": [
21            "RESIDENTIAL"
22        ]
23    }
24};
25
26(async () => {
27    // Run the Actor and wait for it to finish
28    const run = await client.actor("oussemafr/lightweight-facebook-pages-scraper").call(input);
29
30    // Fetch and print Actor results from the run's dataset (if any)
31    console.log('Results from dataset');
32    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
33    const { items } = await client.dataset(run.defaultDatasetId).listItems();
34    items.forEach((item) => {
35        console.dir(item);
36    });
37})();
38
39// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 43 monthly users
  • 3 stars
  • 99.9% runs succeeded
  • 9.4 hours response time
  • Created in May 2024
  • Modified 3 days ago