# Scrape Multiple Bluesky Accounts: Posts + Profiles

**Use case:** 

Feed a list of Bluesky handles and export every account's recent posts and profile into one dataset, ready for a competitor or creator roundup.

## Input

```json
{
  "searchQuery": "artificial intelligence",
  "authorHandles": [
    "jay.bsky.team",
    "pfrazee.com",
    "why.bsky.team"
  ],
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "authorHandle": {
    "label": "Author",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "text"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

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