Overview
Returns a function that fetches the paginated list of followers for any user, identified byuserId. This is a public endpoint — authentication is not required.
For fetching your own followers, see useFetchFollowers.
Usage Example
Parameters
The hook returns a function. That function accepts:The ID of the user whose followers to fetch.
Page number to fetch. Defaults to
1.Number of results per page. Defaults to
20.Returns
Returns aPaginatedResponse containing an array of follower entries:
Array of follower entries.
Pagination metadata including
currentPage, totalPages, totalCount, hasNextPage, and hasPreviousPage.Related
- useFetchFollowers — fetch the current user’s own followers
- useFetchFollowersCountByUserId — get follower count for a user

