pub.chive.annotation.getThread

chive.pub

Documentation

Get an annotation thread including the root annotation and all replies

main query

Get an annotation thread including the root annotation and all replies

Parameters

uri string at-uri Required

AT-URI of the root annotation

Output

Encodingapplication/json
replies array Required

Direct replies to the root annotation

totalReplies integer Required

Total number of replies in the thread

Errors

NotFound Annotation not found
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
AT-URI of the root annotation
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound",
      "description": "Annotation not found"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "parent",
        "replies",
        "totalReplies"
      ],
      "properties": {
        "parent": {
          "ref": "pub.chive.annotation.listForEprint#annotationView",
          "type": "ref",
          "description": "Root annotation of the thread"
        },
        "replies": {
          "type": "array",
          "items": {
            "ref": "pub.chive.annotation.listForEprint#annotationView",
            "type": "ref"
          },
          "description": "Direct replies to the root annotation"
        },
        "totalReplies": {
          "type": "integer",
          "minimum": 0,
          "description": "Total number of replies in the thread"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "uri": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the root annotation"
      }
    }
  },
  "description": "Get an annotation thread including the root annotation and all replies"
}

Lexicon Garden

@