lookupStatuses abstract method

Future<MastodonResponse<List<Status>>> lookupStatuses({
  1. required String accountId,
  2. String? maxStatusId,
  3. String? minStatusId,
  4. String? sinceStatusId,
  5. String? tagged,
  6. int? limit,
  7. bool? excludeReblogs,
})

Statuses posted to the given account.

Parameters

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

  • maxStatusId: Return results older than this ID.

  • minStatusId: Return results immediately newer than this ID.

  • sinceStatusId: Return results newer than this ID.

  • tagged: Filter for statuses using a specific hashtag.

  • limit: Maximum number of results to return. Default: 20.

  • excludeReblogs: Whether to filter out boosts from the response.

Endpoint Url

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

Authentication Methods

  • Anonymous
  • OAuth 2.0

Required Scopes

  • read:statuses

Reference

Implementation

Future<MastodonResponse<List<Status>>> lookupStatuses({
  required String accountId,
  String? maxStatusId,
  String? minStatusId,
  String? sinceStatusId,
  String? tagged,
  int? limit,
  bool? excludeReblogs,
});