social.coves.community.getSubscribers

coves.social

Documentation

Get list of users subscribed to a community

main query

Get list of users subscribed to 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.

Output

Encodingapplication/json
cursor string Optional

No description available.

subscribers 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": [
        "subscribers"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "maxLength": 500
        },
        "subscribers": {
          "type": "array",
          "items": {
            "ref": "#subscriberView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "community"
    ],
    "properties": {
      "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 subscribed to a community"
}
subscriberView object

No description available.

Properties

avatar string uri Optional

A valid URI.

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).

isMember boolean Optional

Whether this subscriber has membership status

reputation integer Optional

User's reputation in this community

subscribedAt string datetime Required

An RFC 3339 formatted timestamp.

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "subscribedAt"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "avatar": {
      "type": "string",
      "format": "uri"
    },
    "handle": {
      "type": "string",
      "format": "handle"
    },
    "isMember": {
      "type": "boolean",
      "description": "Whether this subscriber has membership status"
    },
    "reputation": {
      "type": "integer",
      "description": "User's reputation in this community"
    },
    "displayName": {
      "type": "string",
      "maxLength": 1280,
      "maxGraphemes": 128
    },
    "subscribedAt": {
      "type": "string",
      "format": "datetime"
    }
  }
}

Lexicon Garden

@