# 🦋 Bluesky Scraper — Profiles, Posts, Search & Threads (`snuggly_beanie_970/bluesky-profile-author-feed-monitor`) Actor

Extract Bluesky profiles, feeds, profile and post search, exact posts, reply threads, followers, following, and liked posts with rich media, facets, verification and engagement data.

- **URL**: https://apify.com/snuggly\_beanie\_970/bluesky-profile-author-feed-monitor.md
- **Developed by:** [Ilia](https://apify.com/snuggly_beanie_970) (community)
- **Categories:** Social media, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 1,000 bluesky post, thread reply or liked posts

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## 🦋 Bluesky Scraper — Profiles, Posts, Search, Threads & Graph

Turn public Bluesky data into structured, analysis-ready records. Fetch rich profiles, author feeds, exact posts, complete reply threads, followers, following, liked posts, and profile or post search results from one Actor.

### ✨ Everything in one Bluesky dataset

- **Profiles:** DID, handle, display name, bio, avatar, banner, follower/following/post counts, labels, account dates, associated resources, and verification data.
- **Posts:** stable AT URI and CID, canonical URL, full text, author details, creation/index dates, likes, reposts, replies, quotes, bookmarks, languages, tags, and labels.
- **Rich media:** full-size images, thumbnails, alt text, aspect ratios, video playlists and thumbnails, external-link cards, and quoted-post context.
- **Conversation context:** reply parent/root URIs, exact-post hydration, and breadth-first nested thread export with depth markers.
- **Discovery:** paginated actor search and post search, with the originating query attached to every result.
- **Social graph and engagement:** paginated followers and following, public liked-post feeds, and the likers, reposters, or quote-posts attached to exact posts.

### 🚀 Common workflows

- monitor creators, brands, competitors, announcements, and engagement;
- build audience, follower-overlap, and influencer datasets;
- collect conversations for sentiment, topic, and community research;
- enrich public profiles and identify relevant accounts through search;
- schedule incremental ingestion into Sheets, databases, Make, n8n, webhooks, or AI agents.

### ⚙️ Flexible controls

Use independent limits for feeds, search, graph rows, and threads. Filter posts by date range, BCP-47 language codes, or media presence. Include replies and reposts when needed, and pass `seenPostUris` to avoid duplicate records in recurring runs.

#### Example input

```json
{
  "actors": ["bsky.app", "jay.bsky.team"],
  "searchActors": ["climate journalist"],
  "searchPosts": ["AT Protocol"],
  "postUrls": ["https://bsky.app/profile/bsky.app/post/3l..."],
  "includeProfile": true,
  "includePosts": true,
  "includeFollowers": true,
  "includeThreadReplies": true,
  "maxPostsPerActor": 100,
  "maxRelationshipsPerActor": 500,
  "languages": ["en"]
}
```

### 💳 Pay only for stored results

Billing is result-based: profile/search-profile records use the profile event, posts/search/thread/liked-post records use the post event, and follower/following records use the relationship event. Filtered, duplicate, missing, and failed inputs do not create billable dataset rows.

### 🔌 Automation-ready output

Every record includes a `recordType`, source attribution, and scrape timestamp. Export JSON, CSV, Excel, XML, RSS, or HTML, or access results through the Apify API, webhooks, schedules, integrations, and MCP.

### 📥 Complete input reference

| Field | Type | Default | Purpose |
|---|---|---:|---|
| `actors` | array | `["bsky.app"]` | Handles, @handles, profile URLs or did: identifiers. |
| `searchActors` | array | `[]` | Profile search queries. Each query has its own result limit. |
| `searchPosts` | array | `[]` | Post search queries, including phrases and supported operators. |
| `postUrls` | array | `[]` | Fetch exact posts or complete reply threads. |
| `includeProfile` | boolean | `true` | Export a rich profile row for each actor. |
| `includePosts` | boolean | `true` | Export recent posts from each actor's author feed. |
| `includeReplies` | boolean | `false` | Include posts that reply to another post. |
| `includeReposts` | boolean | `false` | Include posts reposted by the requested actor. |
| `includeFollowers` | boolean | `false` | Export profiles following each actor. |
| `includeFollowing` | boolean | `false` | Export profiles followed by each actor. |
| `includeLikes` | boolean | `false` | Export publicly visible liked posts from each actor's repository. |
| `includeThreadReplies` | boolean | `false` | For post URLs / AT URIs, export the root and nested replies. |
| `includePostLikers` | boolean | `false` | For post URLs / AT URIs, export profiles that liked each post. |
| `includePostReposters` | boolean | `false` | For post URLs / AT URIs, export profiles that reposted each post. |
| `includeQuotePosts` | boolean | `false` | For post URLs / AT URIs, export posts that quote each post. |
| `maxPostsPerActor` | integer | `25` | Independent author-feed result cap for every actor. |
| `maxRelationshipsPerActor` | integer | `100` | Independent cap for followers, following and liked posts. |
| `maxSearchResults` | integer | `100` | Independent cap for every actor or post search query. |
| `maxThreadReplies` | integer | `100` | Maximum root and nested reply rows exported for each thread. |
| `maxEngagementPerPost` | integer | `100` | Independent cap for likers, reposters and quote posts for every input post. |
| `sort` | string | `"latest"` | Order post-search results by recency or relevance/engagement. |
| `postedAfter` | string | `""` | Optional inclusive ISO date or YYYY-MM-DD. |
| `postedBefore` | string | `""` | Optional inclusive ISO date or YYYY-MM-DD. |
| `languages` | array | `[]` | Optional BCP-47 codes such as en, de, ja. |
| `mediaOnly` | boolean | `false` | Keep posts with image or video media URLs. |
| `seenPostUris` | array | `[]` | Stable post URIs to skip on recurring runs. |
| `requestDelayMs` | integer | `0` | Optional pacing delay for long collection jobs. |

### 📤 Complete output reference

The default dataset is exportable as JSON, CSV, Excel, XML or RSS. Fields remain stable for scheduled runs and API integrations.

| Field | Type |
|---|---|
| `recordType` | string |
| `sourceDid` | string / null |
| `sourceHandle` | string / null |
| `did` | string / null |
| `handle` | string / null |
| `profileUrl` | string / null |
| `displayName` | string / null |
| `profileDescription` | string / null |
| `avatarUrl` | string / null |
| `bannerUrl` | string / null |
| `followersCount` | integer / null |
| `followsCount` | integer / null |
| `postsCount` | integer / null |
| `createdAt` | string / null |
| `indexedAt` | string / null |
| `labels` | array / null |
| `associated` | object / null |
| `verification` | object / null |
| `searchQuery` | string / null |
| `threadDepth` | integer / null |
| `sourcePostUri` | string / null |
| `engagementCreatedAt` | string / null |
| `postUri` | string / null |
| `cid` | string / null |
| `postUrl` | string / null |
| `text` | string / null |
| `publishedAt` | string / null |
| `authorDid` | string / null |
| `authorHandle` | string / null |
| `authorDisplayName` | string / null |
| `authorAvatarUrl` | string / null |
| `likeCount` | integer / null |
| `repostCount` | integer / null |
| `replyCount` | integer / null |
| `quoteCount` | integer / null |
| `bookmarkCount` | integer / null |
| `languages` | array / null |
| `tags` | array / null |
| `facets` | array / null |
| `replyParentUri` | string / null |
| `replyRootUri` | string / null |
| `isReply` | boolean / null |
| `isRepost` | boolean / null |
| `repostedBy` | object / null |
| `repostedAt` | string / null |
| `likedAt` | string / null |
| `likeRecordUri` | string / null |
| `embedType` | string / null |
| `images` | array / null |
| `mediaUrls` | array / null |
| `video` | object / null |
| `external` | object / null |
| `quotedPost` | object / null |
| `viewer` | object / null |
| `scrapedAt` | string |

### 🔌 API & integrations

Run this Actor from the Apify Console, API, CLI, MCP, Make, Zapier or n8n. Replace the Actor identifier and token in this template:

```bash
curl -X POST "https://api.apify.com/v2/acts/bluesky-profile-author-feed-monitor/runs?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
```

Results are stored in the run's default dataset and can be forwarded with Apify webhooks or scheduled Tasks.

### 🔎 Search keywords

Bluesky Scraper — Profiles, Posts, Search, Threads & Graph, bluesky, scraper, profiles, posts, search, threads, graph, profile, author, feed, monitor, Apify Actor, scraper API, structured data, scheduled monitor, automation.

### 💰 Pricing

Billing is tied to successfully delivered result events. Empty, filtered, duplicate or failed records are not charged as results. Open the **Pricing** tab for the current per-event rate before starting a run, and use Apify's maximum-charge control to enforce a hard budget.

# Actor input Schema

## `actors` (type: `array`):

Handles, @handles, profile URLs or did: identifiers.

## `searchActors` (type: `array`):

Profile search queries. Each query has its own result limit.

## `searchPosts` (type: `array`):

Post search queries, including phrases and supported operators.

## `postUrls` (type: `array`):

Fetch exact posts or complete reply threads.

## `includeProfile` (type: `boolean`):

Export a rich profile row for each actor.

## `includePosts` (type: `boolean`):

Export recent posts from each actor's author feed.

## `includeReplies` (type: `boolean`):

Include posts that reply to another post.

## `includeReposts` (type: `boolean`):

Include posts reposted by the requested actor.

## `includeFollowers` (type: `boolean`):

Export profiles following each actor.

## `includeFollowing` (type: `boolean`):

Export profiles followed by each actor.

## `includeLikes` (type: `boolean`):

Export publicly visible liked posts from each actor's repository.

## `includeThreadReplies` (type: `boolean`):

For post URLs / AT URIs, export the root and nested replies.

## `includePostLikers` (type: `boolean`):

For post URLs / AT URIs, export profiles that liked each post.

## `includePostReposters` (type: `boolean`):

For post URLs / AT URIs, export profiles that reposted each post.

## `includeQuotePosts` (type: `boolean`):

For post URLs / AT URIs, export posts that quote each post.

## `maxPostsPerActor` (type: `integer`):

Independent author-feed result cap for every actor.

## `maxRelationshipsPerActor` (type: `integer`):

Independent cap for followers, following and liked posts.

## `maxSearchResults` (type: `integer`):

Independent cap for every actor or post search query.

## `maxThreadReplies` (type: `integer`):

Maximum root and nested reply rows exported for each thread.

## `maxEngagementPerPost` (type: `integer`):

Independent cap for likers, reposters and quote posts for every input post.

## `sort` (type: `string`):

Order post-search results by recency or relevance/engagement.

## `postedAfter` (type: `string`):

Optional inclusive ISO date or YYYY-MM-DD.

## `postedBefore` (type: `string`):

Optional inclusive ISO date or YYYY-MM-DD.

## `languages` (type: `array`):

Optional BCP-47 codes such as en, de, ja.

## `mediaOnly` (type: `boolean`):

Keep posts with image or video media URLs.

## `seenPostUris` (type: `array`):

Stable post URIs to skip on recurring runs.

## `requestDelayMs` (type: `integer`):

Optional pacing delay for long collection jobs.

## Actor input object example

```json
{
  "actors": [
    "bsky.app"
  ],
  "searchActors": [],
  "searchPosts": [],
  "postUrls": [],
  "includeProfile": true,
  "includePosts": true,
  "includeReplies": false,
  "includeReposts": false,
  "includeFollowers": false,
  "includeFollowing": false,
  "includeLikes": false,
  "includeThreadReplies": false,
  "includePostLikers": false,
  "includePostReposters": false,
  "includeQuotePosts": false,
  "maxPostsPerActor": 25,
  "maxRelationshipsPerActor": 100,
  "maxSearchResults": 100,
  "maxThreadReplies": 100,
  "maxEngagementPerPost": 100,
  "sort": "latest",
  "postedAfter": "",
  "postedBefore": "",
  "languages": [],
  "mediaOnly": false,
  "seenPostUris": [],
  "requestDelayMs": 0
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("snuggly_beanie_970/bluesky-profile-author-feed-monitor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("snuggly_beanie_970/bluesky-profile-author-feed-monitor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call snuggly_beanie_970/bluesky-profile-author-feed-monitor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,snuggly_beanie_970/bluesky-profile-author-feed-monitor"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/n5o8g2SEue57odypu/builds/K0DdipKWJNtDjuQrr/openapi.json
