lookupAccount abstract method

Future<MastodonResponse<Account>> lookupAccount({
  1. required String accountId,
})

View information about a profile.

Parameters

  • accountId: The ID of the Account in the database.

Endpoint Url

  • GET /api/v1/accounts/:id HTTP/1.1

Authentication Methods

  • Anonymous
  • OAuth 2.0

Required Scopes

  • read:accounts

Reference

Implementation

Future<MastodonResponse<Account>> lookupAccount({
  required String accountId,
});