Facebook Post Info avatar
Facebook Post Info

Pricing

$6.00 / 1,000 results

Go to Store
Facebook Post Info

Facebook Post Info

Developed by

Maged

Maged

Maintained by Community

This Actor scrapes information from Facebook post or video URLs. It extracts details such as page name, post text, timestamp, images, videos, and engagement metrics (likes, comments, shares).

5.0 (1)

Pricing

$6.00 / 1,000 results

0

Total users

3

Monthly users

3

Runs succeeded

>99%

Last modified

5 days ago

Facebook Post/Video Info Scraper Actor

This Actor scrapes information from Facebook post or video URLs. It extracts details such as page name, post text, timestamp, images, videos, and engagement metrics (likes, comments, shares).

Features

  • Scrapes Facebook post and video embed info
  • Extracts:
    • Page name
    • Post text
    • Timestamp
    • Image URLs
    • Video URLs
    • Likes, comments, shares
  • Outputs structured data for each URL

Input

The Actor expects an input object with a single property:

{
"urls": [
"https://www.facebook.com/facebook/posts/pfbid02Yi9eByYHvPXd1mwubx6kmmByddbmGoK8L3VXi4PSSmQucmh6RY1AtxgBhsTJBx1cl",
"https://www.facebook.com/facebook/videos/3898885460362735"
]
}

Output

Each result contains:

  • page_name: Name of the Facebook page
  • post_text: Text content of the post
  • timestamp: Timestamp string
  • image_urls: List of image URLs
  • video_urls: List of video URLs
  • likes: Number of likes
  • comments: Number of comments
  • shares: Number of shares
  • url: The original Facebook URL
  • content_type: 'post' or 'video'
  • error: Error message if scraping failed (optional)

Example output:

{
"page_name": "Facebook",
"post_text": "Welcome to our page!",
"timestamp": "2 hours ago",
"image_urls": ["https://scontent.xx.fbcdn.net/..."],
"video_urls": [],
"likes": 1234,
"comments": 56,
"shares": 7,
"url": "https://www.facebook.com/facebook/posts/pfbid02Yi9eByYHvPXd1mwubx6kmmByddbmGoK8L3VXi4PSSmQucmh6RY1AtxgBhsTJBx1cl",
"content_type": "post"
}