# Scrape Bluesky Posts by Keyword or Hashtag

**Use case:** 

Search Bluesky for any keyword or hashtag and collect matching posts — text, author handle, likes, reposts and timestamps. Keyless, structured JSON.

## Input

```json
{
  "searchQuery": "#AI",
  "authorHandles": [
    "bsky.app"
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "authorHandle": {
    "label": "Author",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "text"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

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