app.tempomusic.feed.getPostReplies

lexicons.tempomusic.fan

Documentation

Paginated flat list of replies whose root is the given post URI, in chronological order. When the request carries a service-auth JWT, the viewer DID is read from its `iss` claim and each returned reply carries a viewer projection; anonymous requests receive replies without viewer state.

main query

Paginated flat list of replies whose root is the given post URI, in chronological order. When the request carries a service-auth JWT, the viewer DID is read from its `iss` claim and each returned reply carries a viewer projection; anonymous requests receive replies without viewer state.

Parameters

cursor string Optional

Opaque pagination cursor returned by a previous call.

limit integer Optional

Maximum number of replies to return.

uri string at-uri Required

AT-URI of the root post whose replies are requested.

Output

Encodingapplication/json
cursor string Optional

Cursor for fetching the next page. Absent when no further results are available.

replies array Required

No description available.

Errors

NotFound No post is indexed at the requested AT-URI.
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
Opaque pagination cursor returned by a previous call.
Maximum number of replies to return.
AT-URI of the root post whose replies are requested.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound",
      "description": "No post is indexed at the requested AT-URI."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "replies"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "maxLength": 1024,
          "description": "Cursor for fetching the next page. Absent when no further results are available."
        },
        "replies": {
          "type": "array",
          "items": {
            "ref": "app.tempomusic.feed.defs#replyView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "uri": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the root post whose replies are requested."
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum number of replies to return."
      },
      "cursor": {
        "type": "string",
        "maxLength": 1024,
        "description": "Opaque pagination cursor returned by a previous call."
      }
    }
  },
  "description": "Paginated flat list of replies whose root is the given post URI, in chronological order. When the request carries a service-auth JWT, the viewer DID is read from its `iss` claim and each returned reply carries a viewer projection; anonymous requests receive replies without viewer state."
}

Lexicon Garden

@