Bluesky Scraper - Posts, Profiles, Threads & Followers avatar

Bluesky Scraper - Posts, Profiles, Threads & Followers

Pricing

Pay per usage

Go to Apify Store
Bluesky Scraper - Posts, Profiles, Threads & Followers

Bluesky Scraper - Posts, Profiles, Threads & Followers

Extract public Bluesky posts, profiles, author feeds, threads, followers, follows, and custom feeds via the AT Protocol API. No login, no browser, no proxies. Includes stable IDs, hashes, timestamps, and run summaries for monitoring.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

S. Klein

S. Klein

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

0

Monthly active users

18 days ago

Last modified

Share

Extract public Bluesky and AT Protocol data without a browser, proxy, cookie, or login.

This Actor uses the public Bluesky AppView XRPC API (api.bsky.app) and saves clean JSON/CSV-ready records for posts, profiles, author feeds, reply threads, followers, follows, and custom feeds. Every saved row includes stable IDs, a record hash, a scrape timestamp, and source metadata. Each run also writes a RUN_SUMMARY record to the key-value store.

Use Cases

  • Social listening and brand monitoring on Bluesky.
  • Research datasets for posts, threads, hashtags, and mentions.
  • Profile and audience analysis for journalists, agencies, and creators.
  • Lead discovery from followers/following lists.
  • Daily scheduled monitoring with dedupe by recordId or recordHash.
  • AI/LLM workflows that need structured AT Protocol data.

Modes

ModeWhat it collectsBest for
profileProfile details for one or more handlesFast health checks, profile enrichment
searchPostsPosts matching a keyword, phrase, or hashtagSocial listening and trend monitoring
authorFeedPosts from one or more accountsCreator/account analysis
postThreadA post and nested repliesConversation analysis
followersAccounts following a handleAudience research
followsAccounts followed by a handleNetwork mapping
customFeedPosts from a public feed generatorTopic/feed monitoring

The default input runs a tiny profile lookup for bsky.app. This is intentional: it gives Apify Store health checks a quick, reliable, low-cost run.

Input

FieldTypeDefaultDescription
modestringprofileOne of profile, searchPosts, authorFeed, postThread, followers, follows, customFeed
handlesstring array["bsky.app"]Handles without @, used by profile/feed/follower modes
searchQuerystringblueskyKeyword, phrase, hashtag, or Bluesky search syntax
searchSortstringlatestlatest or top
searchSincestringemptyOptional start date, YYYY-MM-DD
searchUntilstringemptyOptional end date, YYYY-MM-DD
searchLangstringemptyOptional two-letter language code
postUrlstringemptyPublic bsky.app post URL or AT URI
feedUristringemptyPublic feed generator AT URI
maxItemsinteger10Maximum posts/profiles to save, 1 to 10000
includeRepliesbooleanfalseInclude replies in authorFeed mode
includeRepostsbooleanfalseInclude reposts in authorFeed mode
maxRetriesinteger3Retries for 429, 5xx, and timeout errors
requestTimeoutSecsinteger30Per-request timeout
testModebooleanfalseForces a tiny bsky.app profile lookup

Default Example

{}

Search Posts

{
"mode": "searchPosts",
"searchQuery": "bluesky lang:en",
"searchSort": "latest",
"maxItems": 25
}

Profile And Audience Analysis

{
"mode": "followers",
"handles": ["bsky.app"],
"maxItems": 100
}

Thread Export

{
"mode": "postThread",
"postUrl": "https://bsky.app/profile/pfrazee.com/post/3mnsxzydov22d",
"maxItems": 100
}

Output

Post records include:

  • recordType, recordId, recordHash, scrapedAt, source, scrapedMode
  • postId, url, text
  • authorHandle, authorDid, authorDisplayName
  • likeCount, repostCount, replyCount, quoteCount
  • createdAt, indexedAt, lang
  • tags, mentionedDids
  • hasMedia, mediaUrls, mediaAltTexts
  • reply and external-link metadata where available

Profile records include:

  • recordType, recordId, recordHash, scrapedAt, source, scrapedMode
  • did, handle, displayName, description
  • followerCount, followingCount, postCount
  • avatarUrl, bannerUrl, createdAt, indexedAt, labels

RUN_SUMMARY includes:

  • status: SUCCEEDED, NO_RESULTS, or FAILED
  • mode, requested_items, saved_items, test_mode
  • warnings, errors, dataset_fields_version

Example Output

{
"recordType": "profile",
"recordId": "did:plc:z72i7hdynmk6r22z27h6tvur",
"recordHash": "f0f0a9e2c1...",
"scrapedAt": "2026-07-03T13:30:00.000Z",
"source": "bluesky",
"did": "did:plc:z72i7hdynmk6r22z27h6tvur",
"handle": "bsky.app",
"displayName": "Bluesky",
"description": "Official Bluesky account",
"followerCount": 1000000,
"followingCount": 4,
"postCount": 1000,
"avatarUrl": "https://cdn.bsky.app/...",
"bannerUrl": "https://cdn.bsky.app/...",
"createdAt": "2023-04-12T04:53:57.057Z",
"indexedAt": "2026-07-03T12:00:00.000Z",
"labels": null,
"scrapedMode": "profile"
}

Scheduling And Automation

For daily monitoring:

  1. Use a small maxItems value.
  2. Schedule the Actor on Apify.
  3. Dedupe by recordId.
  4. Compare recordHash to detect changed profile/post metadata.
  5. Read RUN_SUMMARY from the key-value store for alerting.

API example:

curl -X POST \
"https://api.apify.com/v2/acts/actorpilot~bluesky-scraper/runs" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"mode":"searchPosts","searchQuery":"bluesky lang:en","maxItems":25}'

Limits And Notes

  • Only public Bluesky data is returned.
  • No private accounts, blocked content, or login-only data is accessed.
  • Some Bluesky search behavior can change because it is controlled by the public AppView API.
  • Very broad searches or large follower lists can take longer and cost more.
  • Search results may return lighter author objects than profile/feed modes.
  • NO_RESULTS means the source was reachable but the query/filter returned no items.
  • True input or source failures still fail the run and write RUN_SUMMARY.errors.

Why This Actor Instead Of Generic Social Scrapers?

  • It uses the official public AT Protocol API instead of browser scraping.
  • It includes stable AT URI/DID identifiers for reliable dedupe.
  • It writes run summaries for scheduled automation.
  • It supports profiles, posts, threads, followers, follows, and feeds in one Actor.
  • It is designed for low-cost recurring runs, not heavyweight browser sessions.