Bluesky Scraper avatar

Bluesky Scraper

Pricing

from $0.50 / 1,000 results

Go to Apify Store
Bluesky Scraper

Bluesky Scraper

Scrape public Bluesky profiles and posts via the AT Protocol. Extract follower counts, bios, post text, likes, replies, reposts, and media URLs. Bulk profile scraping plus keyword search — ideal for social media monitoring, brand research, and AT Protocol data pipelines.

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

Marius Matulevicius

Marius Matulevicius

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Extract public data from Bluesky via the AT Protocol — profiles, posts, follower counts, engagement metrics, and keyword search results — without needing a Bluesky account or API key.

Built on the Apify platform using Crawlee + TypeScript. Data is sourced from the AT Protocol public AppView (public.api.bsky.app) — an open, unauthenticated API.


What it does

  • Profile scraping — given one or more Bluesky handles (e.g. bsky.app) or DIDs, returns the profile record (bio, follower/following counts, post count) plus their most recent posts.
  • Post data — per post: text, like count, reply count, repost count, quote count, creation timestamp, language tags, and any attached image URLs.
  • Keyword search — searches Bluesky for a term via app.bsky.feed.searchPosts and returns matching public posts from any user.
  • Bulk runs — supports lists of handles and multiple search terms in a single Actor run.

Input

FieldTypeDefaultDescription
profilesstring[]["bsky.app"]Bluesky handles or DIDs to scrape
searchTermsstring[][]Keywords or phrases to search
postsPerProfileinteger25Max posts returned per profile (1–200)
resultsPerSearchinteger25Max posts returned per search term (1–200)
proxyConfigurationobjectApify datacenterProxy settings

Minimal input example

{
"profiles": ["bsky.app", "atproto.com"],
"postsPerProfile": 50
}

Search example

{
"searchTerms": ["AT Protocol", "decentralized social media"],
"resultsPerSearch": 100
}

Output

Each Actor run pushes records to the default dataset. Two record types are produced:

Profile record (type: "profile")

{
"type": "profile",
"did": "did:plc:z72i7hdynmk6r22z27h6tvur",
"handle": "bsky.app",
"displayName": "Bluesky",
"description": "The new home for social media",
"avatarUrl": "https://cdn.bsky.app/img/avatar/...",
"followersCount": 8000000,
"followsCount": 120,
"postsCount": 4500,
"url": "https://bsky.app/profile/bsky.app",
"scrapedAt": "2024-06-23T10:00:00.000Z"
}

Post record (type: "post")

{
"type": "post",
"uri": "at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.post/3abc123",
"cid": "bafyreib2rxk3rybk3aobmv5cjuql3bm2twh4jo5uxgf5kpqcbz5oa4",
"rkey": "3abc123",
"url": "https://bsky.app/profile/bsky.app/post/3abc123",
"authorHandle": "bsky.app",
"authorDid": "did:plc:z72i7hdynmk6r22z27h6tvur",
"text": "Bluesky now has 25 million users.",
"likeCount": 12000,
"repostCount": 800,
"replyCount": 300,
"quoteCount": 150,
"createdAt": "2024-06-01T12:00:00.000Z",
"langs": ["en"],
"imageUrls": [],
"scrapedAt": "2024-06-23T10:00:00.000Z"
}

Search results also include matchedSearchTerm.


Pricing

This Actor uses Pay-Per-Event (PPE) pricing:

EventCharged when
profile-scrapedA profile record is successfully scraped and saved
post-scrapedA post record is successfully scraped and saved

Failed items and error records are not charged. You only pay for data you actually receive.


Proxy

The AT Protocol public AppView (public.api.bsky.app) is an open API with minimal rate limiting. Datacenter proxies are sufficient for most workloads. Residential proxies are not required, but can be selected if you encounter rate limits on high-volume runs.


This Actor scrapes publicly available data only — profiles and posts visible on bsky.app to any visitor without logging in. It calls the AT Protocol public AppView, which is an openly documented, publicly accessible API endpoint designed for third-party consumption.

The AT Protocol is an open, decentralized protocol. Data hosted on the network is intentionally public by design. This Actor does not access private accounts, DMs, or any content requiring authentication.

The user (buyer) bears sole responsibility for how they use the data collected, including compliance with:

  • Bluesky's Terms of Service and Community Guidelines
  • Applicable data protection laws (GDPR, CCPA, and others) — posts and profiles contain personal data even when publicly accessible
  • The laws of the jurisdiction in which they operate

This tool is intended for legitimate use cases such as public research, brand monitoring, academic analysis, and journalistic investigation of public figures and public interest content. Misuse is the responsibility of the operator.