# Monitor a Bluesky account's new posts

**Use case:** 

Track a Bluesky handle and capture only new posts each run: text, created date, likes, reposts, replies, quotes and external links.

## Input

```json
{
  "mode": "userPosts",
  "searchTerms": [
    "photographer"
  ],
  "actors": [
    "bsky.app"
  ],
  "maxResultsPerQuery": 100,
  "enrichProfiles": true,
  "includePosts": true,
  "maxPostsPerUser": 50,
  "postFilter": "posts_no_replies",
  "enrichEmails": false,
  "monitorMode": true,
  "monitorStoreName": "bluesky-monitor",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "authorHandle": {
    "label": "Author",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "createdAt": {
    "label": "Posted",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "number"
  },
  "externalLink": {
    "label": "Link",
    "format": "link"
  },
  "url": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Bluesky Scraper - Profiles, Posts, Followers & Leads](https://apify.com/scrapesage/bluesky-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/bluesky-scraper) to learn more, explore other use cases, and run it yourself.