Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.feed.getPostThread

bsky-lexicons.bsky.social

Documentation

main query

Get posts in a thread. Does not require auth, but additional metadata and filtering will be applied for authed requests.

Parameters

depth integer Optional

How many levels of reply depth should be included in response.

parentHeight integer Optional

How many levels of parent (and grandparent, etc) post to include.

uri string at-uri Required

Reference (AT-URI) to post record.

Output

Encodingapplication/json
thread union Required

No description provided.

Errors

NotFound
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
How many levels of reply depth should be included in response.
How many levels of parent (and grandparent, etc) post to include.
Reference (AT-URI) to post record.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "thread"
      ],
      "properties": {
        "thread": {
          "refs": [
            "app.bsky.feed.defs#threadViewPost",
            "app.bsky.feed.defs#notFoundPost",
            "app.bsky.feed.defs#blockedPost"
          ],
          "type": "union"
        },
        "threadgate": {
          "ref": "app.bsky.feed.defs#threadgateView",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "uri": {
        "type": "string",
        "format": "at-uri",
        "description": "Reference (AT-URI) to post record."
      },
      "depth": {
        "type": "integer",
        "default": 6,
        "maximum": 1000,
        "minimum": 0,
        "description": "How many levels of reply depth should be included in response."
      },
      "parentHeight": {
        "type": "integer",
        "default": 80,
        "maximum": 1000,
        "minimum": 0,
        "description": "How many levels of parent (and grandparent, etc) post to include."
      }
    }
  },
  "description": "Get posts in a thread. Does not require auth, but additional metadata and filtering will be applied for authed requests."
}

Lexicon Garden

@