Bluesky Scraper: Profiles, Posts & Social Graph avatar

Bluesky Scraper: Profiles, Posts & Social Graph

Pricing

from $0.50 / 1,000 results

Go to Apify Store
Bluesky Scraper: Profiles, Posts & Social Graph

Bluesky Scraper: Profiles, Posts & Social Graph

Extract Bluesky profiles, posts (author feed), followers, and following via the open AT Protocol. No authentication required for public data. Better docs + more structured output than the incumbents.

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

Cynix Dev

Cynix Dev

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

Extract rich Bluesky data directly from the open AT Protocol — no login, no cookies, no residential proxy needed. Get profiles, author posts, followers, and following lists as clean structured JSON.

Bluesky

Why this actor

Bluesky has grown past 30 million users with a fully open protocol, but most store actors barely work or return thin data. This actor is built on the public AT Protocol endpoints (no auth, no scraping walls) with cursor-based pagination, polling-friendly rate limiting, and a consistent row schema across every mode.

Data you can fetch

ModeWhat it returns
ProfileHandle, DID, display name, bio, avatar, followers/following/posts counts
PostsAuthor feed: post text, timestamps, like/repost/reply counts, AT-URI
FollowersList of accounts following a handle (handle, DID, bio, counts)
FollowingList of accounts a handle follows

Example Inputs

One profile

{
"handles": ["bsky.app"],
"dataType": "profile"
}

Recent posts by several accounts

{
"handles": ["bsky.app", "nytimes.com", "karpathy.bsky.social"],
"dataType": "posts",
"maxPostsPerHandle": 50
}

Export the follower list of an account

{
"handles": ["mycompany.bsky.social"],
"dataType": "followers",
"maxPostsPerHandle": 500
}

Output

Every row carries data_type (profile / post / follower / following) plus a stable column set: handle, did, display_name, text, created_at, like_count, repost_count, reply_count, followers_count, follows_count, posts_count, avatar, post_uri, scraped_at.

Data Source

AT Protocol public API — Bluesky's open decentralized protocol. Public posts, profiles, and social graph are freely readable without authentication.

Use Cases

  • Brand monitoring: track posts by accounts and growth
  • Influencer / KOL research: profile stats, follower graphs, engagement
  • Content research: what's trending on an open, growing network
  • Social graph analysis: followers/following for lead generation
  • Competitor intelligence: monitor competitor Bluesky presence

Limitations

  • The public API serves popular/federated data; some private or paused accounts may be incomplete
  • Feed/timeline (getTimeline) requires authentication — not exposed here
  • Rate limits apply; the actor paces requests and retries on 429