# Export a Bluesky Account's Following List

**Use case:** 

Export the full list of accounts a Bluesky profile follows — handle, display name, bio, follower and post counts, plus links parsed from each bio. No login.

## Input

```json
{
  "mode": "following",
  "searchTerms": [
    "photographer"
  ],
  "actors": [
    "jay.bsky.team"
  ],
  "maxResultsPerQuery": 500,
  "enrichProfiles": true,
  "includePosts": false,
  "maxPostsPerUser": 20,
  "postFilter": "posts_no_replies",
  "enrichEmails": false,
  "monitorMode": false,
  "monitorStoreName": "bluesky-monitor",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "displayName": {
    "label": "Name",
    "format": "text"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "followsCount": {
    "label": "Following",
    "format": "number"
  },
  "postsCount": {
    "label": "Posts",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "url": {
    "label": "Profile 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.