-
Notifications
You must be signed in to change notification settings - Fork 16
v2.matches.list
cyperdark edited this page Mar 31, 2023
·
3 revisions
Return array of the matches
const { auth } = require('osu-api-extended');
await auth.login(client_id, client_secret);
await v2.matches.list()
export interface response {
matches: {
id: number;
start_time: string;
end_time?: string;
name: string;
}[];
params: {
limit: number;
sort: string;
};
cursor: {
match_id: number;
};
cursor_string: string;
}