Bluesky Scraper avatar

Bluesky Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Bluesky Scraper

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

Saturnin Pugnet

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 days ago

Last modified

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

ModeWhat it doesNeeds
profilesLook up full profiles (bio, follower/follows/post counts)actors
authorFeedPull a user's posts with engagement metricsactors
followersList accounts that follow a useractors
followsList accounts a user followsactors
searchActorsFind 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 }
FieldDescription
modeprofiles, authorFeed, followers, follows, searchActors
actorsHandles (e.g. bsky.app) or DIDs. One or many
searchTermKeyword for searchActors
authorFeedFilterposts_with_replies (default), posts_no_replies, posts_and_author_threads, posts_with_media
maxPerActorCap per account (authorFeed/followers/follows). 0 = unlimited
maxResultsOverall 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 / searchActors return lightweight profiles (no counts); use profiles mode to enrich handles with follower/post counts.