lookupRelationships abstract method

Future<MastodonResponse<List<Relationship>>> lookupRelationships({
  1. required List<String> accountIds,
})

Find out whether a given account is followed, blocked, muted, etc.

Parameters

  • accountIds: Check relationships for the provided account IDs.

Endpoint Url

  • GET /api/v1/accounts/relationships HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:follows

Reference

Implementation

Future<MastodonResponse<List<Relationship>>> lookupRelationships({
  required List<String> accountIds,
});