Accounts
List followers of an account
get/api/v1/accounts/{name}/followers
Path parameters
namestring required
Example:chocobozzz | chocobozzz@example.org
The username or handle of the account
Query parameters
startinteger
Offset used to paginate results
countinteger
Number of items to return
sort'createdAt'
Sort followers by criteria
searchstring
Plain text search, applied to various parts of the model depending on endpoint
Response
successful operation
Example response
{
"data": [
{
"follower": {
"id": 42,
"name": "chocobozzz"
},
"following": {
"id": 42,
"name": "chocobozzz"
},
"id": 42
}
],
"total": 1
}