#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
| Property | Type | Known Values | Required | Description |
|---|
| anchor | string (at-uri) | - | ✅ | Reference (AT-URI) to post record. This is the anchor post. |
| prioritizeFollowedUsers | boolean | - | ❌ | Whether to prioritize posts from followed users. It only has effect when the user is authenticated. |
Output
- Encoding: application/json
| Property | Type | Known Values | Required | Description |
|---|
| thread | array of #threadItem | - | ✅ | A flat list of other thread items. The depth of each item is indicated by the depth property inside the item. |
#threadItem
| Property | Type | Known Values | Required | Description |
|---|
| uri | string (at-uri) | - | ✅ | - |
| depth | integer | - | ✅ | 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. |
| value | union of app.bsky.unspecced.defs#threadItemPost | - | ✅ | - |