chat.bsky.convo.getConvoMembers

bsky-lexicons.bsky.social

Documentation

Returns a paginated list of members from a conversation.

main query

Returns a paginated list of members from a conversation.

Parameters

convoId string Required

No description available.

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

members array Required

No description available.

Errors

InvalidConvo
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
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "InvalidConvo"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "members"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "members": {
          "type": "array",
          "items": {
            "ref": "chat.bsky.actor.defs#profileViewBasic",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "convoId"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "convoId": {
        "type": "string"
      }
    }
  },
  "description": "Returns a paginated list of members from a conversation."
}

Lexicon Garden

@