Social networks3 runnable operations
Bluesky reference
Profiles, feeds, and individual posts from the public Bluesky network.
Each operation below runs through the tool endpoint shown, and is available through REST, MCP, and the Better Fetch workspace.
Profile
AvailableProfile from public Bluesky surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/bluesky_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"profile","actor":"bsky.app"}}'Tool: bluesky_scraper
User posts
AvailableUser posts from public Bluesky surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/bluesky_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"posts","actor":"bsky.app","max_results":10}}'Tool: bluesky_scraper
Post details
AvailablePost details from public Bluesky surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/bluesky_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"post","post_url":"https://bsky.app/profile/bsky.app/post/3l6oveex3ii2l"}}'Tool: bluesky_scraper