The osu!api is currently in an exceptionally unstable state regarding data structure due to the shift towards lazer.
Instead of regularly re-publishing a new version, the rosu-v2/lazer
branch will be kept updated.
To use rosu-v2
, it is recommended to put the following in your Cargo.toml
:
rosu-v2 = { git = "https://github.com/MaxOhn/rosu-v2", branch = "lazer" }
Be warned though, breaking changes are likely to occur regularly for the time being.
rosu-v2 is a wrapper for the osu!api v2.
As such, it provides a bunch of additional endpoints and data over rosu
which wraps the osu!api v1.
However, osu!'s api v2 is still very much a WIP and also weakly documented. Hence, there is a chance that some things might break either because of changes in the api or because the response is not being parsed properly.
Feel free to open an issue when things don't work as expected.
Unlike api v1, api v2 does not require an api key by users. Instead, it requires a client id and a client secret.
To get those, you must register an application here. Unless you're interested in logging into the API through an osu! account, the callback URL here does not matter and can be left blank.
If you went through the OAuth process for a user, you can provide the callback URL and received code when creating the client in order to make requests on behalf of the authenticated user.
The following endpoints are currently supported:
beatmaps/lookup
: A specific beatmap including its beatmapsetbeatmaps
: Up to 50 beatmaps at once including their beatmapsetsbeatmaps/{map_id}/attributes
: The difficulty attributes of a beatmapbeatmaps/{map_id}/scores
: The global score leaderboard for a beatmapbeatmaps/{map_id}/scores/users/{user_id}[/all]
: Get (all) top score(s) of a user on a beatmap. Defaults to the play with the max score, not ppbeatmapsets/{mapset_id}
: The beatmapset including all of its difficulty beatmapsbeatmapsets/events
: Various events around a beatmapset such as status, genre, or language updates, kudosu transfers, or new issuesbeatmapsets/search
: Search for beatmapsets; the same search as on the osu! websitecomments
: Most recent comments and their replies up to two levels deepevents
: Collection of events in order of creation timeforums/topics/{topic_id}
: A forum topic and its postsmatches
: List of currently open multiplayer lobbiesmatches/{match_id}
: More specific data about a specific multiplayer lobby including participating players and occured eventsme[/{mode}]
: Detailed info about the authenticated user [in the specified mode] (requires OAuth)news
: Recent newsrankings/{mode}/{ranking_type}
: The global leaderboard of either performance points, ranked score, countries, or a spotlightusers/{user_id}/{recent_activity}
: List of a user's recent events like achieved medals, ranks on a beatmaps, username changes, supporter status updates, beatmapset status updates, ...scores/{mode}/{score_id}
: A specific score including its beatmap, beatmapset, and userseasonal-backgrounds
: List of seasonal backgrounds i.e. their URL and artistsspotlights
: List of overviews of all spotlightsusers/{user_id}[/{mode}]
: Detailed info about a user [in the specified mode]users/{user_id}/{beatmapsets/{map_type}
: List of beatmapsets either created, favourited, or most played by the userusers/{user_id}/kudosu
: A user's recent kudosu transfersusers/{user_id}/scores/{score_type}
: Either top, recent, pinned, or global #1 scores of a userusers
: Up to 50 users at once including statistics for all modeswiki/{locale}[/{path}]
: The general wiki page or a specific topic if the path is specified
The api itself provides a bunch more endpoints which are not yet implemented because they're either niche and/or missing any documentation.
If you find an endpoint on the api page that you want to use but is missing in rosu-v2, feel free to open an issue.
// For convenience sake, all types can be found in the prelude module
use rosu_v2::prelude::*;
#[tokio::main]
async fn main() {
// Initialize the client
let client_id: u64 = 123;
let client_secret = String::from("my_secret");
let osu = Osu::new(client_id, client_secret).await.unwrap();
// Get peppy's top 10-15 scores in osu!standard.
// Note that the username here can only be used because of the `cache` feature.
// If you are fine with just providing user ids, consider disabling this feature.
let scores: Vec<Score> = osu.user_scores("peppy")
.mode(GameMode::Osu)
.best() // top scores; alternatively .recent(), .pinned(), or .firsts()
.offset(10)
.limit(5)
.await
.unwrap();
// Search non-nsfw loved mania maps matching the given query.
// Note that the order of called methods doesn't matter for any endpoint.
let search_result: BeatmapsetSearchResult = osu.beatmapset_search()
.nsfw(false)
.status(Some(RankStatus::Loved))
.mode(GameMode::Mania)
.query("blue army stars>3")
.await
.unwrap();
// Get the french wiki page on the osu file format
let wiki_page: WikiPage = osu.wiki("fr")
.page("Client/File_formats/osu_%28file_format%29")
.await
.unwrap();
}
Flag | Description | Dependencies |
---|---|---|
default |
Enable the cache and macros features |
|
cache |
Cache username-user_id pairs so that usernames can be used on all user endpoints instead of only user ids | dashmap |
macros |
Re-exports rosu-mods 's mods! macro to easily create mods for a given mode |
paste |
serialize |
Implement serde::Serialize for most types, allowing for manual serialization |
|
metrics |
Uses the global metrics registry to store response time for each endpoint | metrics |
replay |
Enables the method Osu::replay to parse a replay. Note that Osu::replay_raw is available without this feature but provides raw bytes instead of a parsed replay |
osu-db |
local_oauth |
Enables the method OsuBuilder::with_local_authorization to perform the full OAuth procedure |
tokio/net feature |