osu-api-v1-js
    Preparing search index...

    Interface Score

    interface Score {
        count100: number;
        count300: number;
        count50: number;
        countgeki: number;
        countkatu: number;
        countmiss: number;
        date: Date;
        enabled_mods: Mods[];
        maxcombo: number;
        perfect: boolean;
        rank: string;
        score: number;
        score_id: number | null;
        user_id: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    count100: number
    count300: number
    count50: number
    countgeki: number
    countkatu: number
    countmiss: number
    date: Date

    Roughly (or just after) when the last note was hit

    enabled_mods: Mods[]

    If it has Nightcore, it also has DoubleTime

    maxcombo: number
    perfect: boolean

    Whether or not the play has reached the maximum combo it could have (no miss and no missed slider-end)

    rank: string

    Also known as the Grade https://osu.ppy.sh/wiki/en/Gameplay/Grade, it may be "F" if the player failed

    score: number

    The score itself, for example 923357

    score_id: number | null

    The id of the score!

    If the score is a fail (is not completed, has a "F" rank/grade) then this is null

    user_id: number