app.bsky.graph.getFollows

bsky-lexicons.bsky.social

Documentation

Enumerates accounts which a specified account (actor) follows.

main query

Enumerates accounts which a specified account (actor) follows.

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

Output

Encodingapplication/json
cursor string Optional

No description available.

follows 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 follows.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "subject",
        "follows"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "follows": {
          "type": "array",
          "items": {
            "ref": "app.bsky.actor.defs#profileView",
            "type": "ref"
          }
        },
        "subject": {
          "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 follows.",
        "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 a specified account (actor) follows."
}

Lexicon Garden

@