social.colibri.actor.listCommunities

colibri.social

Documentation

Lists the communities the authenticated user is a member of, in their preferred sidebar order.

main query

Lists the communities the authenticated user is a member of, in their preferred sidebar order.

Output

Encodingapplication/json
communities array Required

No description available.

Errors

AuthRequired Missing, malformed, or unverifiable service auth.
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)
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthRequired",
      "description": "Missing, malformed, or unverifiable service auth."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "communities"
      ],
      "properties": {
        "communities": {
          "type": "array",
          "items": {
            "ref": "lex:social.colibri.actor.listCommunities#communityView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Lists the communities the authenticated user is a member of, in their preferred sidebar order."
}
communityView object

A community summary as seen from the member's perspective.

Properties

banner blob Optional

No description available.

categoryOrder array of stringrecord-key Optional

No description available.

description string Optional

No description available.

isLegacy boolean Optional

No description available.

isOwner boolean Optional

No description available.

name string Required

No description available.

picture blob Optional

No description available.

requiresApprovalToJoin boolean Required

No description available.

uri string at-uri Optional

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "name",
    "requiresApprovalToJoin"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "name": {
      "type": "string"
    },
    "banner": {
      "type": "blob"
    },
    "isOwner": {
      "type": "boolean"
    },
    "picture": {
      "type": "blob"
    },
    "isLegacy": {
      "type": "boolean"
    },
    "description": {
      "type": "string"
    },
    "categoryOrder": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "record-key"
      }
    },
    "requiresApprovalToJoin": {
      "type": "boolean"
    }
  },
  "description": "A community summary as seen from the member's perspective."
}

Lexicon Garden

@