# Bluesky hashtag posts: #bookclub

**Use case:** 

The newest Bluesky posts with a hashtag, one row per post, with the author, likes, reposts, replies and quotes, images and the other hashtags each post uses (read from the post's own tag data). For a query made only of hashtags, Bluesky's search returns its newest 100 posts.

## Input

```json
{
  "queries": [
    "#bookclub"
  ],
  "maxPostsPerQuery": 50,
  "monitoringMode": false,
  "resetMonitoringState": false
}
```

## Output

```json
{
  "query": {
    "label": "Query"
  },
  "postUrl": {
    "label": "Post Url",
    "format": "link"
  },
  "text": {
    "label": "Text"
  },
  "authorHandle": {
    "label": "Author Handle"
  },
  "createdAt": {
    "label": "Created At"
  },
  "likeCount": {
    "label": "Like Count"
  },
  "repostCount": {
    "label": "Repost Count"
  },
  "replyCount": {
    "label": "Reply Count"
  },
  "quoteCount": {
    "label": "Quote Count"
  },
  "status": {
    "label": "Status"
  },
  "note": {
    "label": "Note"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/bluesky-posts-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
