Ultimate Facebook Scraper avatar
Ultimate Facebook Scraper
Try for free

3 days trial then $39.00/month - No credit card required now

View all Actors
Ultimate Facebook Scraper

Ultimate Facebook Scraper

curious_coder/ultimate-facebook-scraper
Try for free

3 days trial then $39.00/month - No credit card required now

All in one scraping solution to scrape any kind of data from facebook

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

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "action": "scrapeProfiles",
8  "scrapeProfiles.profileUrls": [
9    "https://www.facebook.com/OnePeakCreative"
10  ],
11  "proxy": {
12    "useApifyProxy": true,
13    "apifyProxyGroups": [
14      "RESIDENTIAL"
15    ],
16    "apifyProxyCountry": "US"
17  },
18  "minDelay": 1,
19  "maxDelay": 3
20}
21EOF
22
23# Run the Actor using an HTTP API
24# See the full API reference at https://docs.apify.com/api/v2
25curl "https://api.apify.com/v2/acts/curious_coder~ultimate-facebook-scraper/runs?token=$API_TOKEN" \
26  -X POST \
27  -d @input.json \
28  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 81 monthly users
  • 4 stars
  • 92.3% runs succeeded
  • 11 hours response time
  • Created in Oct 2023
  • Modified 5 days ago