chat.bsky.group.listMutualGroups

bsky-lexicons.bsky.social

Documentation

Returns a page of group conversations that both the requester and the specified actor are members of.

main query

Returns a page of group conversations that both the requester and the specified actor are members of.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

subject string did Required

A decentralized identifier (DID).

Output

Encodingapplication/json
convos array Required

No description available.

cursor string Optional

No description available.

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
A decentralized identifier (DID).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "convos"
      ],
      "properties": {
        "convos": {
          "type": "array",
          "items": {
            "ref": "chat.bsky.convo.defs#convoView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "subject"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "subject": {
        "type": "string",
        "format": "did"
      }
    }
  },
  "description": "Returns a page of group conversations that both the requester and the specified actor are members of."
}

Lexicon Garden

@