Skip to main content

useFetchFollowersCountByUserId

Overview

The useFetchFollowersCountByUserId hook fetches the total number of followers for a specific user. This is a public endpoint that allows you to retrieve follower counts for any user without authentication.

Usage Example

Advanced Usage with State

Parameters & Returns

Parameters

The hook returns a function that accepts an object with the following field:
userId
string
required
The ID of the user whose follower count to fetch

Returns

The function returns a Promise that resolves to an object containing:
count
number
The total number of users following this user

Error Handling

The hook will throw errors in the following cases:
  • No user ID is provided
  • No project is specified

Notes

This is a public endpoint that doesn’t require user authentication, making it suitable for displaying any user’s follower count in public-facing features like user discovery or leaderboards.