VOOZH about

URL: https://apify.com/xtracto/facebook-page-posts

โ‡ฑ Facebook Page Posts ยท Apify


Pricing

from $0.99 / 1,000 results

Go to Apify Store

Scrape recent public posts from a Facebook page: text, timestamp, reaction count, comment count, and share count.

Pricing

from $0.99 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ Farhan Febrian Nauval

Farhan Febrian Nauval

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

Facebook Page Posts Scraper

Fetch recent public posts from any Facebook page in bulk โ€” post text, attachments, reaction count, comment count, share count, permalink, and timestamp โ€” as a clean structured JSON feed.

Why use this actor

  • No account / no login required โ€” just give it a Facebook page handle (nasa) or full URL.
  • No API key needed โ€” Facebook's public Pages API has been deprecated for years; this actor returns the same data the public web app shows.
  • Full post payload โ€” text body, attached media (images and videos with width/height), permalink, owner name, owner profile picture, and a UTC createdAt timestamp.
  • Engagement counters โ€” reactionCount, commentCount, and shareCount per post.
  • Paginated feed โ€” set maxPosts and the actor walks the feed cursor automatically until the limit is hit or the page runs out of posts.
  • Stable JSON output suitable for pipelines, spreadsheets, and databases โ€” every row carries _input, _source, _scrapedAt envelope fields so you can join results back to your input list.

How it works

  1. You provide a list of Facebook page handles (e.g. nasa, meta) or full page URLs.
  2. The actor opens each page the same way a logged-out browser would, resolves the page's numeric ID, then walks the posts feed page by page.
  3. Each post is flattened into one dataset row with text, media, counters, and timestamp.
  4. Results stream into your dataset, ready to download as JSON, CSV, or Excel.

You do not need to manage scrapers, browsers, or rotating IPs โ€” all handled internally.

Input

{
"pages":[
"nasa",
"https://www.facebook.com/meta"
],
"maxPosts":25,
"proxyConfiguration":{
"useApifyProxy":true,
"apifyProxyGroups":["DATACENTER"]
}
}
FieldTypeDescription
pagesarrayList of Facebook page handles (nasa) or full page URLs (https://www.facebook.com/meta). Numeric page IDs are also accepted.
maxPostsintegerMax posts returned per input page. Default 25, range 1โ€“200. Pagination is handled automatically.
proxyConfigurationobjectApify Proxy settings. Datacenter proxy works for most pages; switch to Residential if a page rate-limits aggressively.

Output

Input: nasa, maxPosts: 3

{
"_input":"nasa",
"_pageId":"100044561550831",
"_source":"S1-primary",
"_scrapedAt":"2026-05-18T11:42:08.187026+00:00",
"postId":"1524998752328829",
"ownerId":"100044561550831",
"ownerName":"NASA",
"ownerProfileUrl":"https://www.facebook.com/NASA/",
"ownerImageUrl":"https://scontent.fyyz1-1.fna.fbcdn.net/v/t39.30808-1/...",
"createdAt":"2026-05-13T15:30:00+00:00",
"createdAtEpoch":1778506200,
"text":"Planning is underway for Artemis III, our next mission to land humans on the Moon...",
"permalink":"https://www.facebook.com/NASA/posts/1524998752328829",
"reactionCount":12400,
"commentCount":291,
"shareCount":409,
"attachments":[
{
"type":"Photo",
"url":"https://www.facebook.com/NASA/photos/1524998752328829",
"id":"1524998745662163",
"imageUrl":"https://scontent.fyyz1-1.fna.fbcdn.net/v/t39.30808-6/...",
"width":2048,
"height":1365
}
]
}
FieldTypeDescription
_inputstringThe handle or URL exactly as you supplied it. Use this to join results back to your input list.
_pageIdstringFacebook's numeric page ID (stable across handle changes).
_sourcestringInternal tag for the path used to fetch the record. S1-primary means the fastest, richest path; values starting with S2-fallback indicate a fallback was used.
_scrapedAtstringISO-8601 UTC timestamp when the record was scraped.
postIdstringFacebook's numeric post ID.
ownerIdstringNumeric ID of the page that authored the post.
ownerNamestringDisplay name of the page (e.g. NASA).
ownerProfileUrlstringCanonical URL of the page.
ownerImageUrlstringURL of the page's profile picture.
createdAtstringISO-8601 UTC publication time.
createdAtEpochintegerSame value as createdAt expressed as Unix epoch seconds.
textstringFull post body text. null for media-only posts.
permalinkstringPublic URL of this specific post.
reactionCountintegerTotal reactions (Like, Love, Care, Haha, Wow, Sad, Angry combined). Facebook rounds this for high-volume posts.
commentCountintegerTotal comments on the post.
shareCountintegerTotal shares of the post.
attachmentsarrayAttached media. Each entry has type (Photo, Video, etc.), url (permalink to the media), id, imageUrl (CDN URL of the image or video thumbnail), and width/height. Empty array for text-only posts.

Error envelope

Pages that can't be resolved or fetched return a structured error instead of crashing the run:

{
"_input":"this-page-does-not-exist-xyz",
"_error":"page_id_resolve_failed",
"_errorDetail":"Could not extract numeric page ID from warm HTML",
"_scrapedAt":"2026-05-18T11:42:09.012345+00:00"
}

Common _error values: warm_failed (couldn't load the page), page_id_resolve_failed (page does not exist or is fully gated), fetch_failed (transient network or server-side error), no_posts (page resolved but has no public posts).

Filter on _error to triage failed rows.

Pricing

This actor is billed per result: $6.00 per 1,000 posts (Tier 4). Each post row = 1 result. Error rows are not billed.

Other Sosmed Actors

PlatformActorBest for
FacebookFacebook Page ScraperPage metadata: name, category, like and follower counts
FacebookFacebook Post Detail ScraperSingle-post deep dive with comments preview
InstagramInstagram Account Posts ScraperRecent posts from any public IG account
X / TwitterX Account Tweets ScraperRecent tweets for any handle
ThreadsThreads Account Threads ScraperRecent threads for any Threads handle
BlueskyBluesky Account Posts ScraperRecent posts for any atproto handle

Browse the full catalog at apify.com/xtracto.

Notes

  • Facebook currently returns one post per request on the anonymous public feed, so the actor paginates internally via cursor to satisfy your maxPosts value. Large jobs (e.g. maxPosts: 200) therefore take noticeably longer than a single page's worth of API calls would suggest โ€” budget accordingly.
  • Pagination is fully automatic; you do not need to pass or persist a cursor.
  • reactionCount is rounded by Facebook for high-volume posts (e.g. 12K, 1.2M โ€” the actor returns the rounded integer as Facebook publishes it).
  • Counters are eventually-consistent and may lag the live page by a few minutes.
  • The actor only returns public posts โ€” content gated behind a login wall or audience restriction is skipped.
  • For best reliability on large jobs, leave Apify Proxy enabled. Datacenter proxy is the default and works for most pages; switch to Residential if a specific page returns frequent fetch_failed errors.

You might also like

Facebook Pages Posts PPR

danek/facebook-pages-posts-ppr

Scrap Facebook pages posts fast and easy. It is designed to be fast and efficient, so it can extract a large number of results for low price. It is also less likely to be blocked by Facebook.

1.1K

4.9

(5)

Facebook Page Posts Scraper

api-empire/facebook-page-posts-scraper

Collect Facebook page posts at scale. Get post text, images, reactions, shares, and comment counts. Great for monitoring brand activity, trends, and audience engagement

49

1.0

(1)

Facebook Pages Posts - PPE

danek/facebook-pages-posts-ppe

Scrap Facebook pages posts fast and easy. It is designed to be fast and efficient, so it can extract numerous results for low price. It is also less likely to be blocked by Facebook.

480

Facebook Page Post Extractor ๐Ÿค–๐Ÿ’พ: Data, Details & Analytics

thedoor/facebook-page-scraper

View count, Like, ... from public Facebook pages. It collects post content, reactions, comments, and attachments, then outputs structured JSON files for analysis.

Facebook Page Posts Scraper

powerai/facebook-page-posts-scraper

Extract posts from any public Facebook page using its page ID, with optional date filtering and automatic pagination up to your specified maxResults.

526

4.0

(1)

Facebook Page Post Scraper

alizarin_refrigerator-owner/facebook-page-post-scraper

Powerful Facebook Page scraper that extracts posts, engagement metrics (likes, comments, shares), images, videos, and posting dates from any public Facebook Page. Perfect for competitive analysis, content research, and social media monitoring.

171

Facebook Page Posts Scraper โ€” No Login Required

crowdpull/facebook-page-posts-scraper

Extract posts from any public Facebook page or profile. No login or cookies needed. Supports date filtering, pagination, and Smart Scrape dedup.

185

5.0

(1)

Facebook Page Posts Scraper

scrapio/facebook-page-posts-scraper

Extract posts from any public Facebook page, including captions, media links, engagement metrics, and posting dates. Perfect for marketers, analysts, and researchers.

Facebook Page Posts Scraper ยท No Cookies

data-slayer/facebook-page-posts

Extract posts from any Facebook page without login. Get full post text, reactions by type (like, love, care, wow, sad, angry), comments, shares, author profiles, media attachments, and timestamps. No cookies, no authentication. Export as JSON/CSV/Excel.

95

5.0

(1)

Scrape Facebook Page Posts by Page ID - Cookieless

patient_discovery/facebook-page-posts

Extract Facebook page posts without login or cookies. Get post content, reactions breakdown, comments, shares, timestamps, media attachments, and author details in JSON or CSV. Ideal for engagement analysis, competitor research, content strategy, and social media intelligence at scale.

73

Facebook Scraper - Pages, Posts & Comments

pear_fight/facebook-scraper

Scrape Facebook pages and posts. Extract post text, images, reactions, comments, shares, timestamps. No login required. Bulk page scraping with date filtering. Pay per result. Export JSON/CSV/Excel. Run via API or schedule.