wss://europe.firehose.network/xrpc/com.atproto.sync.subscribeRepos
Europe relay
europe.firehose.network — a low-latency ATProto relay serving the Atmosphere.
It aggregates repos from PDSes across the Atmosphere and emits a real-time firehose of change events. Replays the last 72 hours.
This relay
Live status, endpoint and the PDSes it has indexed.
Connect
Copy a snippet and start consuming this relay's firehose.
# Subscribe to the repo firehose over WebSocket
wss://europe.firehose.network/xrpc/com.atproto.sync.subscribeReposconst url =
"wss://europe.firehose.network/xrpc/com.atproto.sync.subscribeRepos";
const ws = new WebSocket(url);
ws.addEventListener("open", () => console.log("connected"));
ws.addEventListener("message", (e) => {
// frames are CBOR-encoded firehose events
console.log(e.data);
});Stream
Watch this relay's firehose decode in a live console. A relay carries every event and cannot filter server-side, so the console's filter box only narrows what gets drawn.
Tools
Inspect what this relay knows.
PDS status & crawl
Search this relay for a PDS host. If it isn't indexed, request a crawl.
DID or handle status
Resolve a handle to its DID, then check its repo status on this relay.