lemmy_api_client 0.21.0 copy "lemmy_api_client: ^0.21.0" to clipboard
lemmy_api_client: ^0.21.0 copied to clipboard

Future-based http client for the Lemmy API. Provides an easy interface and statically typed responses.

Lemmy Dart API client #

A Dart client for the Lemmy API

Features #

  • Future-based
  • Works both for Web and Native environments
  • Strictly typed responses
  • Room websocket joins
  • Pictrs endpoints
  • Models have a .instanceHost property that indicate the instance that returned this model

Example #

import 'package:lemmy_api_client/v3.dart';

Future<void> main() async {
  // instantiate your lemmy instance with the host uri
  const lemmy = LemmyApiV3('lemmy.ml');

  // call methods that are named after op codes from the lemmy docs
  final response =
      await lemmy.run(const Login(usernameOrEmail: 'asd', password: 'ads'));

  final messages = await lemmy
      .run(GetPrivateMessages(unreadOnly: true, auth: response.jwt!.raw));

  print(messages);
}

check out Lemmur, a mobile Lemmy client in Flutter


Original Lemmy logo made by Andy Cuccaro (@andycuccaro) under the CC-BY-SA 4.0 license. Remixed by Marcin Wojnarowski (@shilangyu) and re-released under the CC-BY-SA 4.0 license.

1
likes
100
pub points
0%
popularity

Publisher

unverified uploader

Future-based http client for the Lemmy API. Provides an easy interface and statically typed responses.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

freezed_annotation, http, json_annotation, web_socket_channel

More

Packages that depend on lemmy_api_client