mangadex_api::v5::statistics::group::id

Module get

Source
Expand description

Builder for getting a given group’s statistics.

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

This only gets statistics for a single 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()
    .id(group_id)
    .get()
    .send()
    .await?;

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

Structs§