GET Match History

https://pd.{shard}.a.pvp.net/match-history/v1/history/{puuid}?startIndex={startIndex}&endIndex={endIndex}&queue={queue}

Get the match history for the given player

Headers:

URL Parameters:

Query Parameters:

Other Variables:

Response:

type MatchHistoryResponse = {
    /** Player UUID */
    Subject: string;
    BeginIndex: number;
    EndIndex: number;
    Total: number;
    History: {
        /** Match ID */
        MatchID: string;
        /** Milliseconds since epoch */
        GameStartTime: number;
        /** Queue ID */
        QueueID: string;
    }[];
};