GET Premier Player Crests

https://pd.{shard}.a.pvp.net/premier/v2/players/{puuid}/crests

Get Premier season history and crest data for a player.

Headers

URL Parameters

Other Variables

Response

type PremierPlayerCrestsResponse = {
    /** Player UUID */
    puuid: string;
    /** ISO 8601 date string */
    contenderEligibilityExpiry: string;
    /** Map of season ID to season crest data */
    seasons: {
        [x: string]: {
            /** UUID */
            seasonId: string;
            /** UUID */
            rosterId: string;
            rosterName: string;
            rosterTag: string;
            /** e.g. "EU_WEST", "EU_NORTH" */
            conference: string;
            division: number;
            points: number;
            /** e.g. "NONE", "COMPETITOR", "PLAYOFFS" */
            crest: string;
            championshipPointRequirement: number;
            /** Map of event type (e.g. "LEAGUE", "TOURNAMENT") to games played */
            gamesPlayedByEventType: {
                [x: string]: number;
            };
        };
    };
};