TTWrite API: Fetch Followers Endpoint
The fetch_followers
endpoint allows you to retrieve the list of followers for a specific user account. This endpoint supports pagination, making it easy to load additional followers as needed.
Endpoint URL
//ttwrite.4up.eu/mobile_api/fetch_followers
Overview
This API is designed to fetch the followers of a given user. By providing the user’s ID and optionally an offset, you can retrieve a paginated list of followers.
Parameters
To make a successful request, include the following parameters:
Required Parameters
user_id
The unique ID of the user whose followers you wish to fetch.
Optional Parameters
session_id
Access token ID of the requesting user. While optional, including this helps ensure the user is authenticated. Example:de25cc16eb00960f076...
.offset
The ID of the last user retrieved in the previous request. Use this parameter for paginated results.
Example Usage
Here’s an example of a typical request to this endpoint:
httpCopy codeGET //ttwrite.4up.eu/mobile_api/fetch_followers?user_id=12345&offset=67890&session_id=de25cc16eb00960f076...
Notes
- The
offset
parameter helps paginate through large follower lists. - The
session_id
is optional but is recommended for user-specific requests. - Ensure you pass the correct
user_id
to avoid fetching incorrect data.
admin December 8, 2024 access token ID, fetch followers API, fetch followers example, fetch user accounts, fetch user followers, follower offset ID, followers endpoint, followers list pagination, followers pagination API, followers retrieval API, paginate followers list, session ID optional, TTWrite API guide, TTWrite documentation, TTWrite endpoint, TTWrite followers, TTWrite mobile API, user account followers, user followers API, user ID parameter API, Social Media, TTWrite Comments Off on TTWrite API: Fetch Followers Endpoint