Skip to main content
Fetch Following
Returns a paginated list of users that the authenticated user is following. Unlike the user-scoped endpoint, this route always returns data for the current authenticated user.
Users with a block between them and you, in either direction, are excluded from the results. Requires the moderation bundle.

Query Parameters

number
Page number for pagination. Defaults to 1.
number
Number of results per page. Defaults to 20. Max 100.
string
Optional search term. Filters the list to users whose username or name contains this text (case-insensitive). When omitted, no filtering is applied.
string
Restricts which field query matches against — username or name. When omitted, query matches either field.

Response

On success, returns HTTP 200 with a paginated response:
array
Array of follow entries.
object
Pagination metadata.

See Also