FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
How to Scrape Bluesky with the AT Protocol — Free, No API Key
How-ToWeb Development

How to Scrape Bluesky with the AT Protocol — Free, No API Key

via Dev.to JavaScriptАлексей Спинов2h ago

Bluesky is the fastest-growing social network — from 10M to 41M users in one year (+302%). And its AT Protocol makes it the easiest platform to build data tools for. Why Bluesky for Developers? Fully public API at public.api.bsky.app No API key needed for reading profiles and feeds No rate limits on public reads Rich data — posts, likes, reposts, replies, hashtags, mentions Quick Start: Get Any Profile const did = await fetch ( " https://public.api.bsky.app/xrpc/com.atproto.identity.resolveHandle?handle=bsky.app " ). then ( r => r . json ()). then ( d => d . did ); const profile = await fetch ( `https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor= ${ did } ` ). then ( r => r . json ()); console . log ( profile . displayName ); // "Bluesky" console . log ( profile . followersCount ); // 32,420,172 Get Posts with Engagement const feed = await fetch ( `https://public.api.bsky.app/xrpc/app.bsky.feed.getAuthorFeed?actor= ${ did } &limit=50` ). then ( r => r . json ()); for ( co

Continue reading on Dev.to JavaScript

Opens in a new tab

Read Full Article
0 views

Related Articles

This free privacy tool makes it super easy to see which sites are selling your data
How-To

This free privacy tool makes it super easy to see which sites are selling your data

ZDNet • 1h ago

Oupes Mega 1 review: I finally found a portable power station I can store in my truck
How-To

Oupes Mega 1 review: I finally found a portable power station I can store in my truck

ZDNet • 2h ago

I Recreated a $200 TradingView Indicator in Pine Script for Free — Here’s How
How-To

I Recreated a $200 TradingView Indicator in Pine Script for Free — Here’s How

Medium Programming • 2h ago

7 Wireshark Filters That Instantly Make You Look Like a Network Expert
How-To

7 Wireshark Filters That Instantly Make You Look Like a Network Expert

Medium Programming • 3h ago

The Dyslexic Learning Curve
How-To

The Dyslexic Learning Curve

Medium Programming • 4h ago

Discover More Articles