# Scrape a Bluesky Profile

**Use case:** 

Get public Bluesky profile data for a handle, including display name, follower count, following count, posts count, and URL.

## Input

```json
{
  "mode": "profiles",
  "handles": [
    "jay.bsky.team"
  ],
  "maxResults": 1
}
```

## Output

```json
{
  "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"
  },
  "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.