GET Sessions

https://127.0.0.1:{port}/product-session/v1/external-sessions

Gets info about the running Valorant process including start arguments Can be used to get shard, region, and puuid by parsing launch args.

Headers:

URL Parameters:

Other Variables:

Response:

type SessionsResponse = {
    [x: string]: {
        exitCode: number;
        exitReason: null;
        isInternal: boolean;
        launchConfiguration: {
            arguments: string[];
            executable: string;
            locale: string | null;
            voiceLocale: null;
            workingDirectory: string;
        };
        patchlineFullName: "VALORANT" | "riot_client";
        patchlineId: "" | "live" | "pbe";
        phase: string;
        productId: "valorant" | "riot_client";
        version: string;
    };
};