lookupTrendingStatuses abstract method

Future<MastodonResponse<List<Status>>> lookupTrendingStatuses({
  1. int? limit,
})

Statuses that have been interacted with more than others.

Parameters

  • limit: Maximum number of results to return. Defaults to 10.

Endpoint Url

  • GET /api/v1/trends/statuses HTTP/1.1

Authentication Methods

  • Anonymous

Reference

Implementation

Future<MastodonResponse<List<Status>>> lookupTrendingStatuses({
  int? limit,
});