120 releases

new 0.19.8 Dec 12, 2024
0.19.7 Nov 15, 2024
0.19.6-beta1 Jul 23, 2024
0.19.3 Jan 22, 2024
0.11.3-rc.5 Jul 24, 2021

#993 in Web programming

Download history 69/week @ 2024-08-21 77/week @ 2024-08-28 1/week @ 2024-09-04 54/week @ 2024-09-11 118/week @ 2024-09-18 98/week @ 2024-09-25 145/week @ 2024-10-02 51/week @ 2024-10-09 123/week @ 2024-10-16 226/week @ 2024-10-23 240/week @ 2024-10-30 305/week @ 2024-11-06 355/week @ 2024-11-13 48/week @ 2024-11-20 16/week @ 2024-11-27 131/week @ 2024-12-04

560 downloads per month
Used in 10 crates (9 directly)

AGPL-3.0

2MB
52K SLoC

SQL 27K SLoC // 0.0% comments Rust 25K SLoC // 0.0% comments

lemmy_api_common

This crate provides all the data types which are necessary to build a client for Lemmy. You can use them with the HTTP client of your choice.

Here is an example using reqwest:

    let params = GetPosts {
        community_name: Some("asklemmy".to_string()),
        ..Default::default()
    };
    let client = Client::new();
    let response = client
        .get("https://lemmy.ml/api/v3/post/list")
        .query(&params)
        .send()
        .await?;
    let json = response.json::<GetPostsResponse>().await.unwrap();
    print!("{:?}", &json);

As you can see, each API endpoint needs a parameter type ( GetPosts), path (/post/list) and response type (GetPostsResponse). You can find the paths and handler methods from this file. The parameter type and response type are defined on each handler method.

For a real example of a Lemmy API client, look at lemmyBB.

Lemmy also provides a websocket API. You can find the full websocket code in this file.

Generate TypeScript bindings

TypeScript bindings (API types) can be generated by running cargo test --features full. The ts files be generated into a bindings folder.

This crate uses ts_rs macros derive(TS) and ts(export) to attribute types for binding generating.

Dependencies

~13–34MB
~588K SLoC