# Scrape All Posts from a Bluesky Account

**Use case:** 

Scrape all posts from any Bluesky account — text, timestamps, likes, reposts, replies and media URLs from the public AT Protocol feed. No login or API key.

## Input

```json
{
  "mode": "userPosts",
  "searchTerms": [
    "photographer"
  ],
  "actors": [
    "jay.bsky.team"
  ],
  "maxResultsPerQuery": 100,
  "enrichProfiles": true,
  "includePosts": false,
  "maxPostsPerUser": 100,
  "postFilter": "posts_no_replies",
  "enrichEmails": false,
  "monitorMode": false,
  "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.