Interface Score

interface Score {
    accuracy: number;
    best_id: null | number;
    id: null | number;
    max_combo: number;
    mods: string[] | Mod[];
    passed: boolean;
    pp: null | number;
    rank: string;
    replay: boolean;
    type: string;
    user_id: number;
}

Hierarchy (view full)

Properties

accuracy: number

In a format where 96.40% would be 0.9640 (likely with some numbers after the zero)

best_id: null | number
id: null | number
max_combo: number
mods: string[] | Mod[]
passed: boolean
pp: null | number

Is null when Beatmap is Loved (for example)

rank: string

Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

replay: boolean

Can this score's replay be downloaded from the website?

type: string
user_id: number

The ID of the user who made the score