Facebook Page Details Scraper avatar

Facebook Page Details Scraper

Pricing

from $2.95 / 1,000 page detail saveds

Go to Apify Store
Facebook Page Details Scraper

Facebook Page Details Scraper

Extract public Facebook Page details, contacts, engagement metrics, profile images, and lead-ready metadata from Page URLs or handles.

Pricing

from $2.95 / 1,000 page detail saveds

Rating

0.0

(0)

Developer

Hanna Nosova

Hanna Nosova

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Extract public Facebook Page details, contacts, engagement metrics, profile images, and lead-ready metadata from Page URLs or handles.

Facebook Page Details Scraper turns a list of public Pages into one normalized record per Page. Use it for recurring lead generation, CRM enrichment, market research, competitor monitoring, and automated social intelligence workflows.

At a glance

  • Input: Facebook Page URLs or handles such as NASA or https://www.facebook.com/Meta.
  • Output: One detail record per public Page.
  • Key data: Page ID, name, description, public contact data, likes, followers, talking-about counts, image, rating, categories, and social links.
  • Exports: JSON, CSV, Excel, XML, RSS, API, webhooks, and MCP through Apify datasets.
  • Access: Public logged-out Page information only; no Facebook credentials are requested.

Ready-to-run examples

Open a public example to inspect its input, run it, or reuse it as a task:

Example input

{
"pageUrls": [
"https://www.facebook.com/NASA",
"Meta"
],
"maxItems": 2
}

Example output

{
"input": "https://www.facebook.com/NASA",
"url": "https://www.facebook.com/NASA/",
"handle": "NASA",
"pageId": "100044561550831",
"name": "NASA - National Aeronautics and Space Administration",
"title": "NASA - National Aeronautics and Space Administration",
"description": "Explore the universe and discover our home planet.",
"bio": null,
"categories": [],
"website": "https://www.nasa.gov/",
"email": null,
"phone": null,
"address": null,
"profileImageUrl": "https://scontent...fbcdn.net/...png",
"likesCount": 28721135,
"likesDisplay": "28,721,135 likes",
"followersCount": null,
"followersDisplay": null,
"talkingAboutCount": 155816,
"talkingAboutDisplay": "155,816 talking about this",
"isVerified": null,
"rating": null,
"ratingCount": null,
"socialLinks": [],
"scrapedAt": "2026-09-06T00:00:00.000Z",
"sourceStatus": "complete"
}

Values are returned only when they are visible on the public Page. Nullable fields are not inferred from unrelated viewer or proxy data.

Who is it for?

This Actor is designed for sales and lead-generation teams, CRM operators, market researchers, social-media analysts, agencies, and developers who need repeatable public Facebook Page records.

What you can do

  • Generate leads: collect public websites, email addresses, phone numbers, and addresses shown on business Pages.
  • Enrich CRM records: attach canonical Page URLs, Page IDs, names, descriptions, categories, and profile images.
  • Monitor competitors: schedule recurring runs and compare public descriptions and engagement counts over time.
  • Research markets: build structured Page datasets for brands, organizations, venues, nonprofits, and local businesses.
  • Power automations: connect datasets to Google Sheets, n8n, Make, Zapier, webhooks, or your own application.
  • Use with AI agents: run the Actor through Apify MCP and analyze normalized Page records in an agent workflow.

Input settings

SettingJSON keyDescription
Facebook PagespageUrlsPublic Page URLs or handles. Accepts up to 500 entries.
Start URLsstartUrlsAlternative Apify request-list input for full public Page URLs.
Maximum PagesmaxItemsGlobal output limit from 1 to 500; default is 10.
ProxyproxyConfigurationOptional Apify Proxy configuration for public Pages unavailable from direct access.

Duplicate normalized Page URLs are processed once. Invalid hosts and URLs without a Page path are rejected before any network request.

Output fields

FieldDescription
inputOriginal URL or handle supplied by the user.
urlCanonical public Facebook Page URL.
handlePage handle parsed from the canonical URL.
pageIdPublic Facebook Page/profile ID when visible.
name, titleNormalized Page name and full public title.
description, bioPublic Page description or intro text.
categoriesPublic Page categories when available.
websitePublic external website shown by the Page.
email, phone, addressPublic lead contact information when visible.
profileImageUrlPublic profile image URL.
likesCount, likesDisplayNumeric and display versions of public Page likes.
followersCount, followersDisplayNumeric and display versions of public followers.
talkingAboutCount, talkingAboutDisplayNumeric and display versions of the public talking-about metric.
isVerifiedtrue when an explicit public verification marker is visible; otherwise null.
rating, ratingCountPublic rating/review summary when visible.
socialLinksExplicit public Instagram, LinkedIn, X, YouTube, Pinterest, or Telegram links.
scrapedAtISO timestamp for the record.
sourceStatuscomplete or partial, depending on public-field availability.

Input recipes

Collect local-business leads

{
"pageUrls": [
"https://www.facebook.com/example-business-one",
"https://www.facebook.com/example-business-two"
],
"maxItems": 10
}

Monitor known Pages

{
"startUrls": [
{ "url": "https://www.facebook.com/NASA" },
{ "url": "https://www.facebook.com/Meta" }
],
"maxItems": 2
}

Schedule the second recipe weekly or monthly and compare records by pageId or url.

Pricing

This Actor uses pay-per-event pricing:

  • A small one-time start event is charged when a valid run begins.
  • One result event is charged for each Facebook Page record saved.
  • Invalid or unavailable inputs that do not produce records are not charged as results.
  • Volume discounts depend on your Apify plan. See the live Pricing tab for current rates.

API usage

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('fetch_cat/facebook-page-details-scraper').call({
pageUrls: ['NASA', 'Meta'],
maxItems: 2,
});
console.log(run.defaultDatasetId);

Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('fetch_cat/facebook-page-details-scraper').call(run_input={
'pageUrls': ['NASA', 'Meta'],
'maxItems': 2,
})
print(run['defaultDatasetId'])

cURL

curl -X POST "https://api.apify.com/v2/acts/fetch_cat~facebook-page-details-scraper/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"pageUrls":["NASA","Meta"],"maxItems":2}'

MCP and AI agents

Connect an AI client to the focused Apify MCP endpoint:

https://mcp.apify.com?tools=fetch_cat/facebook-page-details-scraper

Add it with the Claude CLI:

$claude mcp add apify https://mcp.apify.com?tools=fetch_cat/facebook-page-details-scraper

Or add this server configuration to an MCP-compatible client:

{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com?tools=fetch_cat/facebook-page-details-scraper"
}
}
}

Example prompt: “Extract public contact and engagement details for these Facebook Pages and return a lead table.”

Tips

  • Start with two or three Page URLs before scaling a large list.
  • Use canonical public Page URLs when available.
  • Schedule recurring inputs to track changes over time.
  • Join records using pageId when present and fall back to canonical url.
  • Treat nullable contact fields as “not publicly visible,” not as evidence that the business has no contact method.

Limits

  • Only public Facebook Pages visible without logging in are supported.
  • Private profiles, private groups, comments, reactions, and login-only details are out of scope.
  • Age-gated, region-restricted, removed, or temporarily challenged Pages may not return a record.
  • Facebook can vary public fields by Page and can change its public presentation.
  • Contact details and ratings are returned only when explicitly present in public Page information.

FAQ

Does this require Facebook cookies, login, or an access token?
No. Do not provide Facebook credentials. The Actor works with information available on public Pages.

Can I export Facebook Page leads to CSV or Excel?
Yes. Open the run dataset and select JSON, CSV, Excel, XML, RSS, or another Apify export format.

Can I run it through an API or MCP?
Yes. Use the Apify REST API, JavaScript/Python clients, webhooks, schedules, or the focused MCP endpoint above.

Why are some fields null?
Facebook does not expose every field on every logged-out Page. The Actor keeps unavailable values null instead of guessing.

Why did a URL return no record?
The URL may not identify a public Page, or the Page may be removed, private, restricted, or unavailable to logged-out visitors.

Is this the same as a Facebook posts scraper?
No. This Actor intentionally returns one Page-detail record per input. Use a dedicated post scraper when you need posts or comments.

Support

Open an issue from the Actor page if a public Page fails or a field looks wrong. Include the run URL or ID, input JSON, one example public Page URL, expected result, and actual dataset row.

Privacy and responsible use

Use this Actor only for lawful public-data workflows. Respect applicable terms, privacy rules, and data-protection requirements. Avoid collecting or retaining unnecessary personal or sensitive information.