Get Bluesky Social Graph
bsky_get_followsFetch the social graph edges for a Bluesky account — who follows them, or who they follow. Returns paginated actor profiles (handle, DID, displayName, bio, pronouns when set, follower count) plus a summary of the subject account — website is not on this view, only on bsky_get_profile. Accounts with large social graphs return only the first page; use cursor pagination to walk through the full list.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actor | Yes | Handle (e.g. "alice.bsky.social") or DID of the account to query. A bare name without a dot is not a handle — use bsky_search_actors to resolve one. | |
| limit | No | Maximum number of actors to return per page (1–100). Default 25. | |
| cursor | No | Opaque pagination cursor from a previous response. Omit for the first page. | |
| direction | Yes | "followers" returns accounts that follow this actor. "following" returns accounts this actor follows. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cap | No | The limit applied to this page. | |
| error | No | Present when the call failed. Absent on success. | |
| shown | No | Number of actors returned on this page. | |
| actors | No | Actors in the requested direction of the social graph. | |
| cursor | No | Opaque cursor for the next page. Absent on the last page. | |
| notice | No | Guidance when the result set is empty or constrained. | |
| subject | No | Profile summary of the queried actor. | |
| truncated | No | True when more actors exist beyond this page (a cursor was returned). | |
| totalReturned | No | Number of actors in this response page. |