# Collect Bluesky Posts for Research

**Use case:** 

Scrape recent posts from selected Bluesky handles with text, engagement counts, timestamps, author handles, and post URLs.

## Input

```json
{
  "mode": "posts",
  "handles": [
    "bsky.app",
    "jay.bsky.team"
  ],
  "maxResults": 100
}
```

## Output

```json
{
  "authorHandle": {
    "label": "Author",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "createdAt": {
    "label": "Date",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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