app.didpic.graph.getFollowers

lexicons.didpic.app

Documentation

Accounts that follow the given actor. Newest follow first.

main query

Accounts that follow the given actor. Newest follow first.

Parameters

actor string Required

DID or handle of the actor.

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

followers array Required

No description available.

Errors

ActorNotFound
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 actor.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "ActorNotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "subject",
        "followers"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "subject": {
          "ref": "app.didpic.actor.defs#profileBasic",
          "type": "ref"
        },
        "followers": {
          "type": "array",
          "items": {
            "ref": "app.didpic.actor.defs#profileBasic",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "actor": {
        "type": "string",
        "description": "DID or handle of the actor."
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Accounts that follow the given actor. Newest follow first."
}

Lexicon Garden

@