# Scrape Public Facebook Page Post Links

**Use case:** 

Scrape visible public Facebook Page post links plus Page metadata when Facebook exposes logged-out public posts for selected Page URLs or handles.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.facebook.com/NASA"
    }
  ],
  "pageUrls": [
    "NASA"
  ],
  "includePosts": true,
  "maxPostsPerPage": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "name": {
    "label": "Page name",
    "format": "text"
  },
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "url": {
    "label": "Page URL",
    "format": "link"
  },
  "pageId": {
    "label": "Page ID",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "likesCount": {
    "label": "Likes",
    "format": "number"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "talkingAboutCount": {
    "label": "Talking about",
    "format": "number"
  },
  "profileImageUrl": {
    "label": "Profile image",
    "format": "image"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  },
  "postId": {
    "label": "Post ID",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Pages Scraper](https://apify.com/fetch_cat/facebook-pages-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/facebook-pages-scraper) to learn more, explore other use cases, and run it yourself.