mangadex_api::v5::statistics::group

Module get

Source
Expand description

Builder for finding Group statistics.

https://api.mangadex.org/docs/swagger.html#/Statistics/get-statistics-groups

This allows querying for multiple Manga.

§Examples

use mangadex_api_types::MangaStatus;
use mangadex_api::v5::MangaDexClient;
use uuid::Uuid;

let client = MangaDexClient::default();

// Galaxy Degen Scans
let group_id = Uuid::parse_str("ab24085f-b16c-4029-8c05-38fe16592a85")?;

let group_stats = client
    .statistics()
    .group()
    .get()
    .group_id(&group_id)
    .send()
    .await?;

println!("Response: {:?}", group_stats);

Structs§