Endpoint
Authentication
This endpoint requires authentication.Path Parameters
The username of the user whose followers you want to retrieve
Response
The total number of followers
Array of follower user objects
Request Example
cURL
Response Example
Error Responses
Not Found - The specified user account does not exist
Implementation Details
This endpoint uses an optimized projection query to prevent N+1 query problems:- The query first retrieves the follower account IDs (follow.list.cs:9-14)
- A second query fetches the full user details for those IDs (follow.list.cs:16)
AsNoTracking()is used for read-only queries to improve performance (follow.list.cs:14)- Username comparison is case-insensitive (follow.list.cs:9)