# Track a Bluesky User's Posts

**Use case:** 

Collect the latest posts from any Bluesky account by handle — full text, engagement counts and timestamps. No login required, structured JSON output.

## Input

```json
{
  "searchQuery": "artificial intelligence",
  "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.