TTWrite API: Fetch Following Users

Endpoint URL

//ttwrite.4up.eu/mobile_api/fetch_following

Description

This API retrieves the list of users that the authenticated user is following on the TTWrite platform.

Parameters

FieldValueRemarks
user_idintegerThe unique identifier of the user whose following list is being fetched.
limitintegerOptional. The number of results to return per request. Default is 20.
offsetintegerOptional. The starting point for the results. Used for pagination.

Example Usage

httpCopy codeGET //ttwrite.4up.eu/mobile_api/fetch_following?user_id=123&limit=10&offset=0

Notes

  • Authentication is required to access this API.
  • Ensure that the user_id parameter is valid and corresponds to an existing user on the platform.
  • Pagination parameters (limit and offset) are optional but recommended for managing large result sets.