hypixel-sdk 0.1.0

Async client for the Hypixel Public API with typed models and SkyBlock helpers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod auction;
mod bazaar;
mod extras;
mod profile;

pub use auction::{AuctionsPage, EndedAuction, SkyBlockAuction};
pub use bazaar::{Bazaar, BazaarOrder, BazaarProduct, BazaarQuickStatus};
pub use extras::{FireSale, Garden, Museum, NewsItem};
pub use profile::{Banking, SkyBlockMember, SkyBlockProfile};

pub(crate) use auction::{AuctionResponse, EndedAuctionsResponse};
pub(crate) use extras::{
    BingoEventsResponse, FireSalesResponse, GardenResponse, MuseumResponse, NewsResponse,
};
pub(crate) use profile::{ProfileResponse, ProfilesResponse};