Bluesky Scraper
Pricing
from $3.00 / 1,000 results
Bluesky Scraper
Scrape public Bluesky data via the AT Protocol - no login required. Five modes: look up profiles, pull a user's posts, list followers or follows, and search accounts by keyword. Full pagination. For social research, audience analysis, and lead generation.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Saturnin Pugnet
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
10 days ago
Last modified
Categories
Share
Bluesky Scraper (AT Protocol)
Scrape public Bluesky data via the AT Protocol public API. No login, no API key - reads the same public endpoints the app uses. Near-zero maintenance.
Modes
| Mode | What it does | Needs |
|---|---|---|
profiles | Look up full profiles (bio, follower/follows/post counts) | actors |
authorFeed | Pull a user's posts with engagement metrics | actors |
followers | List accounts that follow a user | actors |
follows | List accounts a user follows | actors |
searchActors | Find accounts by keyword (name, handle, bio) | searchTerm |
Use cases
- Audience analysis — pull a creator's or brand's followers and analyze the audience.
- Lead generation — search accounts by keyword, or harvest followers of a relevant account.
- Social research / monitoring — track a set of accounts' posts and engagement over time.
Input
{ "mode": "profiles", "actors": ["bsky.app", "nytimes.com"] }
{ "mode": "followers", "actors": ["nytimes.com"], "maxPerActor": 1000 }
{ "mode": "authorFeed", "actors": ["bsky.app"], "authorFeedFilter": "posts_no_replies", "maxPerActor": 200 }
{ "mode": "searchActors", "searchTerm": "climate scientist", "maxResults": 200 }
| Field | Description |
|---|---|
mode | profiles, authorFeed, followers, follows, searchActors |
actors | Handles (e.g. bsky.app) or DIDs. One or many |
searchTerm | Keyword for searchActors |
authorFeedFilter | posts_with_replies (default), posts_no_replies, posts_and_author_threads, posts_with_media |
maxPerActor | Cap per account (authorFeed/followers/follows). 0 = unlimited |
maxResults | Overall cap. 0 = unlimited |
Output
Profiles: did, handle, displayName, description, followersCount, followsCount, postsCount, createdAt, avatar, profileUrl.
Posts: uri, authorHandle, authorDisplayName, text, createdAt, replyCount, repostCount, likeCount, quoteCount, langs, postUrl.
Notes
- Full-text post search (
searchPosts) requires an authenticated session and is not included in this no-login actor. followers/follows/searchActorsreturn lightweight profiles (no counts); useprofilesmode to enrich handles with follower/post counts.