lookupFollowSuggestions abstract method

Future<MastodonResponse<List<Suggestion>>> lookupFollowSuggestions({
  1. int? limit,
})

Accounts that are promoted by staff, or that the user has had past positive interactions with, but is not yet following.

Parameters

  • limit: Maximum number of results to return. Defaults to 40 accounts. Max 80 accounts.

Endpoint Url

  • GET /api/v2/suggestions HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read

Reference

Implementation

Future<MastodonResponse<List<Suggestion>>> lookupFollowSuggestions({
  int? limit,
});