GET Competitive Updates

https://pd.{shard}.a.pvp.net/mmr/v1/players/{puuid}/competitiveupdates?startIndex={startIndex}&endIndex={endIndex}&queue={queue}

Get recent games and how they changed ranking

Headers:

URL Parameters:

Query Parameters:

Other Variables:

Response:

type CompetitiveUpdatesResponse = {
    Version: number;
    /** Player UUID */
    Subject: string;
    Matches: {
        /** Match ID */
        MatchID: string;
        /** Map ID */
        MapID: string;
        /** Season ID */
        SeasonID: string;
        /** Milliseconds since epoch */
        MatchStartTime: number;
        TierAfterUpdate: number;
        TierBeforeUpdate: number;
        RankedRatingAfterUpdate: number;
        RankedRatingBeforeUpdate: number;
        RankedRatingEarned: number;
        RankedRatingPerformanceBonus: number;
        CompetitiveMovement: "MOVEMENT_UNKNOWN";
        AFKPenalty: number;
    }[];
};