# Monitor NASA Facebook Page Posts Since 2020

**Use case:** 

Schedule date-bounded extraction of NASA Page posts since 2020 to track publishing activity, media formats, outbound links, and visible engagement over time.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.facebook.com/NASA"
    }
  ],
  "maxItems": 2,
  "fromDate": "2020-01-01"
}
```

## Output

```json
{
  "pageName": {
    "label": "Page username",
    "format": "string"
  },
  "authorName": {
    "label": "Page title",
    "format": "string"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "string"
  },
  "text": {
    "label": "Post text",
    "format": "string"
  },
  "timestamp": {
    "label": "Published at",
    "format": "string"
  },
  "likesCount": {
    "label": "Reactions",
    "format": "integer"
  },
  "commentsCount": {
    "label": "Comments",
    "format": "integer"
  },
  "sharesCount": {
    "label": "Shares",
    "format": "integer"
  },
  "isVideo": {
    "label": "Video post",
    "format": "boolean"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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