GET All Chat Info
https://127.0.0.1:{port}/chat/v6/conversations Get information about all active conversations
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 AllChatInfoResponse = {
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": "vomer",
"direct_messages": false,
"global_readership": false,
"message_history": true,
"mid": "atrox",
"muted": false,
"mutedRestriction": false,
"type": "chat",
"uiState": {
"changedSinceHidden": true,
"hidden": true
},
"unread_count": 4823663113896533
},
{
"cid": "vitae",
"direct_messages": true,
"global_readership": true,
"message_history": false,
"mid": "attonbitus",
"muted": false,
"mutedRestriction": false,
"type": "groupchat",
"uiState": {
"changedSinceHidden": false,
"hidden": false
},
"unread_count": 430618282486065
},
{
"cid": "cedo",
"direct_messages": true,
"global_readership": true,
"message_history": true,
"mid": "totus",
"muted": true,
"mutedRestriction": false,
"type": "groupchat",
"uiState": {
"changedSinceHidden": false,
"hidden": false
},
"unread_count": 1600265685608384
},
{
"cid": "sint",
"direct_messages": false,
"global_readership": true,
"message_history": true,
"mid": "conturbo",
"muted": true,
"mutedRestriction": false,
"type": "groupchat",
"uiState": {
"changedSinceHidden": false,
"hidden": false
},
"unread_count": 6279301462976311
},
{
"cid": "vergo",
"direct_messages": true,
"global_readership": true,
"message_history": false,
"mid": "acidus",
"muted": false,
"mutedRestriction": false,
"type": "chat",
"uiState": {
"changedSinceHidden": false,
"hidden": false
},
"unread_count": 7348869172653410
}
]
}