lookupTrendingTags abstract method

Future<MastodonResponse<List<Tag>>> lookupTrendingTags({
  1. int? limit,
})

Tags that are being used more frequently within the past week.

Parameters

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

Endpoint Url

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

Authentication Methods

  • Anonymous

Reference

Implementation

Future<MastodonResponse<List<Tag>>> lookupTrendingTags({
  int? limit,
});