139 releases

1.0.0-alpha.3 Mar 24, 2025
0.20.0-alpha.5 Feb 4, 2025
0.19.12-beta.12 Jun 11, 2025
0.19.8 Dec 12, 2024
0.11.3-rc.5 Jul 24, 2021

#1654 in HTTP server

Download history 17/week @ 2025-02-18 27/week @ 2025-02-25 141/week @ 2025-03-04 248/week @ 2025-03-11 201/week @ 2025-03-18 58/week @ 2025-03-25 247/week @ 2025-04-01 246/week @ 2025-04-08 14/week @ 2025-04-15 7/week @ 2025-04-22 2/week @ 2025-04-29 173/week @ 2025-05-06 253/week @ 2025-05-13 174/week @ 2025-05-20 68/week @ 2025-05-27 109/week @ 2025-06-03

754 downloads per month
Used in 11 crates (10 directly)

AGPL-3.0

2MB
60K SLoC

Rust 30K SLoC // 0.0% comments SQL 29K 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/v4/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

~14–53MB
~1M SLoC