GET Chat Participants
https://127.0.0.1:{port}/chat/v5/participants?cid={cid} Get information about the participants of all active conversations or a specific conversation if a cid is provided
Headers
-
Authorization: Basic {base64 encoded "riot:{lockfile password}"}
URL Parameters
-
{port}The port can be found from the lockfile (located at
%LocalAppData%\Riot Games\Riot Client\Config\lockfile) when the game is running. The file has the formatname:pid:port:password:protocol
Query Parameters
-
cidoptionalA chat conversation ID. The IDs of all active conversations can be found from the All Chat Info endpoint.
Other Variables
-
lockfile passwordThe password can be found from the lockfile (located at
%LocalAppData%\Riot Games\Riot Client\Config\lockfile) when the game is running. The file has the formatname:pid:port:password:protocol
Response
type ChatParticipantsResponse = {
participants: {
activePlatform: null;
cid: string;
game_name: string;
game_tag: string;
muted: boolean;
name: string;
pid: string;
/** Player UUID */
puuid: string;
region: string;
}[];
}; {
"participants": [
{
"activePlatform": null,
"cid": "deporto",
"game_name": "crux",
"game_tag": "ullam",
"muted": true,
"name": "Mike Gleichner V",
"pid": "sollicito",
"puuid": "e64Ce7C1-0bdD-545E-5E20-88b3cBA2eDee",
"region": "fugit"
},
{
"activePlatform": null,
"cid": "damno",
"game_name": "porro",
"game_tag": "triduana",
"muted": false,
"name": "Josephine Bechtelar",
"pid": "decerno",
"puuid": "D6FaCf6f-8ACA-FbD5-5Fab-dA0Ec5EEA208",
"region": "aveho"
},
{
"activePlatform": null,
"cid": "arma",
"game_name": "libero",
"game_tag": "ab",
"muted": false,
"name": "Emanuel Zboncak DVM",
"pid": "angustus",
"puuid": "4B33eA1F-e38B-e68C-b0E1-EDEAeC2F52F4",
"region": "dolorum"
}
]
}