app.bsky.graph.getFollowers

bsky-lexicons.bsky.social

Documentation

Enumerates accounts which follow a specified account (actor).

main query

Enumerates accounts which follow a specified account (actor).

Parameters

actor string at-identifier Required

Either a DID or an AT Protocol handle.

cursor string Optional

No description available.

limit integer Optional

No description available.

sort string Optional

Sort order of the returned followers.

Output

Encodingapplication/json
cursor string Optional

No description available.

followers 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
Either a DID or an AT Protocol handle.
Sort order of the returned followers.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "subject",
        "followers"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "subject": {
          "ref": "app.bsky.actor.defs#profileView",
          "type": "ref"
        },
        "followers": {
          "type": "array",
          "items": {
            "ref": "app.bsky.actor.defs#profileView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "sort": {
        "type": "string",
        "description": "Sort order of the returned followers.",
        "knownValues": [
          "latest",
          "top"
        ]
      },
      "actor": {
        "type": "string",
        "format": "at-identifier"
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Enumerates accounts which follow a specified account (actor)."
}

Lexicon Garden

@