lookupConversations abstract method

Future<MastodonResponse<List<Conversation>>> lookupConversations({
  1. int? limit,
})

View all conversations

Parameters

  • limit: Maximum number of results to return. Defaults to 20 conversations. Max 40 conversations.

Endpoint Url

  • GET /api/v1/conversations HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:statuses

Reference

Implementation

Future<MastodonResponse<List<Conversation>>> lookupConversations({
  int? limit,
});