bluesky_get_followers
Retrieve a list of users following a specific account on BlueSky, with options to set a limit or paginate using a cursor for extended results.
Instructions
Get a list of accounts following the user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor for next page of results | |
limit | No | Maximum number of followers to return (default 50, max 100) |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Pagination cursor for next page of results",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of followers to return (default 50, max 100)",
"type": "integer"
}
},
"type": "object"
}