Low-latency AT Protocol interaction indexer.
20

Configure Feed

Select the types of activity you want to include in your feed.

README.md: add resolveHandle

Aly Raffauf (Jul 4, 2026, 12:00 PM EDT) f4d7263a 88c78622

+11 -1
+11 -1
README.md
··· 90 90 91 91 ## API 92 92 93 - Asterism implements all five current endpoints from the [microcosm links XRPC namespace](https://constellation.microcosm.blue/) (the older `/links/*` REST endpoints are deprecated upstream in favor of these and aren't implemented here), plus one identity endpoint borrowed from [Slingshot](https://slingshot.microcosm.blue/): 93 + Asterism implements all five current endpoints from the [microcosm links XRPC namespace](https://constellation.microcosm.blue/) (the older `/links/*` REST endpoints are deprecated upstream in favor of these and aren't implemented here), plus an identity endpoint borrowed from [Slingshot](https://slingshot.microcosm.blue/) and the standard `com.atproto.identity.resolveHandle`: 94 94 95 95 ### `GET /xrpc/blue.microcosm.links.getBacklinksCount` 96 96 ··· 177 177 | `identifier` | Handle or DID to resolve (required) | 178 178 179 179 Response: `{"did": "...", "handle": "...", "pds": "...", "signing_key": "..."}` 180 + 181 + ### `GET /xrpc/com.atproto.identity.resolveHandle` 182 + 183 + Resolve a handle to a DID. This is a standard atproto lexicon (not microcosm-specific), included for compatibility with generic atproto tooling that expects any resolver/PDS to expose it. 184 + 185 + | Parameter | Description | 186 + | --------- | ----------------------------- | 187 + | `handle` | Handle to resolve (required) | 188 + 189 + Response: `{"did": "..."}` 180 190 181 191 ## Roadmap 182 192