social.coves.community.getMembers

coves.social

Documentation

Get list of users with membership status in a community

main query

Get list of users with membership status in a community

Parameters

community string at-identifier Required

DID or handle of the community

cursor string Optional

No description available.

limit integer Optional

No description available.

sort string Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

members array Required

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
DID or handle of the community
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "members"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "maxLength": 500
        },
        "members": {
          "type": "array",
          "items": {
            "ref": "#memberView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "community"
    ],
    "properties": {
      "sort": {
        "type": "string",
        "default": "reputation",
        "maxLength": 64,
        "knownValues": [
          "reputation",
          "recent",
          "alphabetical"
        ]
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "maxLength": 500
      },
      "community": {
        "type": "string",
        "format": "at-identifier",
        "description": "DID or handle of the community"
      }
    }
  },
  "description": "Get list of users with membership status in a community"
}
memberView object

No description available.

Properties

avatar string uri Optional

A valid URI.

commentCount integer Optional

Number of comments in this community

minimum: 0
did string did Required

A decentralized identifier (DID).

displayName string Optional

No description available.

maxLength: 1280 bytesmaxGraphemes: 128 graphemes
handle string handle Optional

An AT Protocol handle (e.g., alice.bsky.social).

isModerator boolean Optional

No description available.

memberSince string datetime Required

An RFC 3339 formatted timestamp.

postCount integer Optional

Number of posts in this community

minimum: 0
reputation integer Optional

No description available.

minimum: 0
View raw schema
{
  "type": "object",
  "required": [
    "did",
    "memberSince"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "avatar": {
      "type": "string",
      "format": "uri"
    },
    "handle": {
      "type": "string",
      "format": "handle"
    },
    "postCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of posts in this community"
    },
    "reputation": {
      "type": "integer",
      "minimum": 0
    },
    "displayName": {
      "type": "string",
      "maxLength": 1280,
      "maxGraphemes": 128
    },
    "isModerator": {
      "type": "boolean"
    },
    "memberSince": {
      "type": "string",
      "format": "datetime"
    },
    "commentCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of comments in this community"
    }
  }
}

Lexicon Garden

@