GET Match Replay Info

https://{cluster}.pp.sgp.pvp.net/match-history-query/v3/products/valorant/players/{puuid}/infoTypes/{type}?id={match id}&id={match id}

Get download URLs for match replay files. Supports fetching multiple matches at once by repeating the id query parameter.

{type} can be:

The {puuid} must be your own or a friend's — otherwise access will be denied.

Headers

URL Parameters

Other Variables

Response

type MatchReplayInfoResponse = {
    /** Number of matches returned */
    total: number;
    matchFileUrlsMap: {
        [x: string]: string;
    };
};