lookupBlockedAccounts abstract method

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

View your blocks.

Parameters

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

Endpoint Url

  • GET /api/v1/blocks HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:blocks

Reference

Implementation

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