# Create a small Bluesky dataset for RAG testing

**Use case:** 

Export public Bluesky profile and feed data with a bounded example input for social listening, reporting, research, and dashboards.

## Input

```json
{
  "actors": [
    "bsky.app"
  ],
  "maxPostsPerActor": 30,
  "includeReplies": false,
  "includeReposts": false,
  "requestDelayMs": 150
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "actorHandle": {
    "label": "Profile handle",
    "format": "text"
  },
  "profileDisplayName": {
    "label": "Display name",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "text": {
    "label": "Post text",
    "format": "text"
  },
  "createdAt": {
    "label": "Post created",
    "format": "date"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "postsCount": {
    "label": "Profile posts",
    "format": "number"
  }
}
```

## About this Actor

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