app.didpic.graph.getFollows

lexicons.didpic.app

Documentation

Accounts the given actor follows. Newest follow first.

main query

Accounts the given actor follows. 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.

follows 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",
        "follows"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "follows": {
          "type": "array",
          "items": {
            "ref": "app.didpic.actor.defs#profileBasic",
            "type": "ref"
          }
        },
        "subject": {
          "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 the given actor follows. Newest follow first."
}

Lexicon Garden

@