Documentation Index
Fetch the complete documentation index at: https://mintlify.com/0xfelaback/Social-Media-Activity-Feed/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authentication
This endpoint requires authentication.Path Parameters
The username of the user whose following list you want to retrieve
Response
The total number of users being followed
Array of user objects that are being followed
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 similar to the followers endpoint:- The query first retrieves the following account IDs (follow.list.cs:43-47)
- A second query fetches the full user details for those IDs (follow.list.cs:49-50)
AsNoTracking()is used for read-only queries to improve performance (follow.list.cs:47)- Username comparison is case-insensitive (follow.list.cs:43)