Bluesky
Read public AT Protocol social data with no key or login
Bluesky's public AppView exposes profiles, posts, feeds and follows over plain XRPC calls. Read-only lookups such as fetching a profile work with no key, no login and open CORS. Write actions and private data still require an authenticated session.
GET https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=bsky.app
{
"did": "did:plc:z72i7hdynmk6r22z27h6tvur",
"handle": "bsky.app",
"displayName": "Bluesky",
"description": "official Bluesky account (check username👆)",
"createdAt": "2023-04-12T04:53:57.057Z",
"indexedAt": "2025-10-27T21:05:26.152Z"
}curl "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=bsky.app"const res = await fetch("https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=bsky.app");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=bsky.app")
print(res.json())/xrpc/app.bsky.actor.getProfile?actor=bsky.appPROBEDRead public AT Protocol social data with no key or login
/xrpcXrpc — documented GET route.
/xrpc/1Xrpc details by ID (example: 1).
/xrpc?limit=10Xrpc — documented GET route.
/xrpc/search?q=testSearch by query parameters.
/xrpc/app.bsky.actor.getProfile?limit=5App Bsky Actor GetProfile — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Bluesky: common questions
Is Bluesky free to use?
Yes — Bluesky is a free social & work API. Free tier: Free — public AppView, no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Bluesky need an API key?
No — Bluesky needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Bluesky from the browser?
Yes — Bluesky returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Bluesky up right now?
As of our last scheduled check, Bluesky is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.