# Scrape Posts From a Facebook Page

**Use case:** 

Extract recent posts from any public Facebook Page — message text, author, timestamp, reactions, comments, shares, images, and post URLs. Paginated, no login.

## Input

```json
{
  "url": "https://www.facebook.com/nasa",
  "limit": 20
}
```

## Output

```json
{
  "message": {
    "label": "Post text",
    "format": "text"
  },
  "author_name": {
    "label": "Author",
    "format": "text"
  },
  "timestamp": {
    "label": "Posted (UTC)",
    "format": "number"
  },
  "reactions_count": {
    "label": "Reactions",
    "format": "number"
  },
  "comments_count": {
    "label": "Comments",
    "format": "number"
  },
  "reshare_count": {
    "label": "Shares",
    "format": "number"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Page Posts Scraper – Export Any Page's Posts](https://apify.com/endspec/facebook-instant-page-posts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/endspec/facebook-instant-page-posts-scraper) to learn more, explore other use cases, and run it yourself.