lookupFeaturedProfiles abstract method

Future<MastodonResponse<List<Account>>> lookupFeaturedProfiles({
  1. int? limit,
})

Accounts that the user is currently featuring on their profile.

Parameters

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

Endpoint Url

  • GET /api/v1/endorsements HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:accounts

Reference

Implementation

Future<MastodonResponse<List<Account>>> lookupFeaturedProfiles({
  int? limit,
});