Skip to main content

app.bsky.unspecced.getPostThreadOtherV2

#main

(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of unspecced or your application WILL break) Get additional posts under a thread e.g. replies hidden by threadgate. Based on an anchor post at any depth of the tree, returns top-level replies below that anchor. It does not include ancestors nor the anchor itself. This should be called after exhausting app.bsky.unspecced.getPostThreadV2. Does not require auth, but additional metadata and filtering will be applied for authed requests.

Parameters

PropertyTypeKnown ValuesRequiredDescription
anchorstring (at-uri)-Reference (AT-URI) to post record. This is the anchor post.
prioritizeFollowedUsersboolean-Whether to prioritize posts from followed users. It only has effect when the user is authenticated.

Output

  • Encoding: application/json
PropertyTypeKnown ValuesRequiredDescription
threadarray of #threadItem-A flat list of other thread items. The depth of each item is indicated by the depth property inside the item.

#threadItem

PropertyTypeKnown ValuesRequiredDescription
uristring (at-uri)--
depthinteger-The nesting level of this item in the thread. Depth 0 means the anchor item. Items above have negative depths, items below have positive depths.
valueunion of
app.bsky.unspecced.defs#threadItemPost
--