Skip to content

v2.user.beatmaps.kudosu

cyperdark edited this page May 23, 2023 · 3 revisions

Return list of kudosu actions

Authentication

const { auth } = require('osu-api-extended');
await auth.login(client_id, client_secret);

Function

await v2.user.beatmaps.kudosu(user, object)

Parameters

Parameter Type Description
user number id of the user
object.limit number Maximum number of results
object.offset number Result offset for pagination

Response

export interface response {
  id: number;
  action: string;
  amount: number;
  model: string;
  created_at: string;
  giver: string;
  post: {
    url: string;
    title: string;
  };
  details: {
    event: string;
  };
}

[v3.x.x] Documentation


[v2.x.x] Documentation

Clone this wiki locally