GET Current Game Chat Info
https://127.0.0.1:{port}/chat/v6/conversations/ares-coregame Get information about the current game chat
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
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 CurrentGameChatInfoResponse = {
conversations: {
cid: string;
direct_messages: boolean;
global_readership: boolean;
message_history: boolean;
mid: string;
muted: boolean;
mutedRestriction: boolean;
type: "groupchat" | "chat";
uiState: {
changedSinceHidden: boolean;
hidden: boolean;
};
unread_count: number;
}[];
}; {
"conversations": [
{
"cid": "ullam",
"direct_messages": true,
"global_readership": true,
"message_history": false,
"mid": "aranea",
"muted": false,
"mutedRestriction": false,
"type": "chat",
"uiState": {
"changedSinceHidden": false,
"hidden": false
},
"unread_count": 6932284869155606
},
{
"cid": "toties",
"direct_messages": false,
"global_readership": false,
"message_history": true,
"mid": "voluntarius",
"muted": true,
"mutedRestriction": true,
"type": "groupchat",
"uiState": {
"changedSinceHidden": true,
"hidden": true
},
"unread_count": 7438392718523686
},
{
"cid": "patria",
"direct_messages": false,
"global_readership": true,
"message_history": true,
"mid": "vito",
"muted": false,
"mutedRestriction": true,
"type": "groupchat",
"uiState": {
"changedSinceHidden": false,
"hidden": false
},
"unread_count": 529723253177419
},
{
"cid": "sed",
"direct_messages": false,
"global_readership": false,
"message_history": true,
"mid": "callide",
"muted": false,
"mutedRestriction": true,
"type": "chat",
"uiState": {
"changedSinceHidden": false,
"hidden": true
},
"unread_count": 2940653424928262
},
{
"cid": "viscus",
"direct_messages": false,
"global_readership": false,
"message_history": true,
"mid": "conitor",
"muted": false,
"mutedRestriction": false,
"type": "chat",
"uiState": {
"changedSinceHidden": true,
"hidden": true
},
"unread_count": 3785019986178395
}
]
}