# Search Bluesky People by Keyword

**Use case:** 

Find Bluesky profiles matching a topic such as AI, returning handles, display names, follower counts, and profile URLs.

## Input

```json
{
  "mode": "search-people",
  "handles": [
    "artificial intelligence"
  ],
  "maxResults": 50
}
```

## 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.