# Track who names your brand on Bluesky every day

**Use case:** 

Every public Bluesky post from the last 25 hours that names your brand or links to your site, one row per post with its text, author, link and live likes, reposts and replies. Schedule it daily and nothing falls through the gap.

## Input

```json
{
  "keywords": [
    "apify"
  ],
  "hashtags": [
    "python"
  ],
  "domains": [
    "apify.com"
  ],
  "lookbackHours": 25,
  "includeReplies": true,
  "maxItems": 50
}
```

## Output

```json
{
  "url": {
    "label": "Post URL",
    "format": "string"
  },
  "uri": {
    "label": "AT URI",
    "format": "string"
  },
  "text": {
    "label": "Post Text",
    "format": "string"
  },
  "created_at": {
    "label": "Created At",
    "format": "string"
  },
  "author_name": {
    "label": "Author Name",
    "format": "string"
  },
  "author_handle": {
    "label": "Author Handle",
    "format": "string"
  },
  "author_did": {
    "label": "Author DID",
    "format": "string"
  },
  "langs": {
    "label": "Languages",
    "format": "array"
  },
  "type": {
    "label": "Post Type",
    "format": "string"
  },
  "matched_by": {
    "label": "Matched By",
    "format": "array"
  },
  "links": {
    "label": "Links",
    "format": "array"
  },
  "images": {
    "label": "Images",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Bluesky Scraper: Mentions, Hashtags, Link Tracker](https://apify.com/pradio/bluesky-mentions.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/pradio/bluesky-mentions.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/pradio/bluesky-mentions.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`).
