# Bluesky keyword post search — example task

**Use case:** 

Runs the Bluesky Scraper in keyword-search mode to pull recent posts for a term or hashtag via the public AT Protocol API, no login required.

## Input

```json
{
  "mode": "search",
  "handles": [
    "bsky.app"
  ],
  "includeReplies": false,
  "maxItems": 5,
  "onlyNewSinceLastRun": false,
  "threadDepth": 6,
  "parentHeight": 0,
  "query": "engineering",
  "sort": "latest",
  "minLikes": 0,
  "minReposts": 0,
  "aiAnalysis": false
}
```

## Output

```json
{
  "mode": {
    "label": "Mode",
    "format": "string"
  },
  "authorHandle": {
    "label": "Author handle",
    "format": "string"
  },
  "text": {
    "label": "Post text",
    "format": "string"
  },
  "createdAt": {
    "label": "Created at",
    "format": "string"
  },
  "likeCount": {
    "label": "Like count",
    "format": "number"
  },
  "repostCount": {
    "label": "Repost count",
    "format": "number"
  },
  "replyCount": {
    "label": "Reply count",
    "format": "number"
  },
  "url": {
    "label": "Web URL",
    "format": "string"
  }
}
```

## About this Actor

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