Facebook Groups Scraper avatar
Facebook Groups Scraper
Try for free

7 days trial then $45.00/month - No credit card required now

View all Actors
Facebook Groups Scraper

Facebook Groups Scraper

apify/facebook-groups-scraper
Try for free

7 days trial then $45.00/month - No credit card required now

Extract data from one or multiple public Facebook groups. Get group and post URLs, post text, comments, timestamp, likes and comments count, and basic commentator info. Download the data in JSON, CSV, and Excel and use it in apps, spreadsheets, and reports.

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 mode

Node.js

Python

curl

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    "startUrls": [
11        {
12            "url": "https://www.facebook.com/groups/874728723021553"
13        }
14    ],
15    "resultsLimit": 20,
16    "viewOption": "CHRONOLOGICAL"
17};
18
19(async () => {
20    // Run the Actor and wait for it to finish
21    const run = await client.actor("apify/facebook-groups-scraper").call(input);
22
23    // Fetch and print Actor results from the run's dataset (if any)
24    console.log('Results from dataset');
25    const { items } = await client.dataset(run.defaultDatasetId).listItems();
26    items.forEach((item) => {
27        console.dir(item);
28    });
29})();
Developer
Maintained by Apify
Actor metrics
  • 349 monthly users
  • 99.9% runs succeeded
  • 2.6 days response time
  • Created in Nov 2022
  • Modified 3 days ago