interface Request {
    gamemode:
        | "40l"
        | "blitz"
        | "league"
        | "zenith"
        | "zenithex";
    leaderboard: "top" | "recent" | "progression";
    user: string;
}

Properties

gamemode:
    | "40l"
    | "blitz"
    | "league"
    | "zenith"
    | "zenithex"

The game mode to look up. One of: 40l — their 40 LINES records. blitz — their BLITZ records. zenith — their QUICK PLAY records. zenithex — their EXPERT QUICK PLAY records. league — their TETRA LEAGUE history.

leaderboard: "top" | "recent" | "progression"

The personal leaderboard to look up. One of: top — their top scores. recent — their most recently placed records. progression — their top scores (PBs only).

user: string

The lowercase username or user ID to look up.