Skip to content
  1. MTKruto/
  2. Walkthrough/
  3. Saved Messages
  1. Listing Saved Chats
  2. Getting Saved Messages
Guides

Saved MessagesUSER-ONLY

User Walkthrough · 5 of 50

Users can list chats with saved messages and get the messages saved from each chat.

Listing Saved Chats

To get a SavedChats object, call getSavedChats.

const { chats } = await client.getSavedChats();

for (const { chat } of chats) {
  console.log(chat.id, chat.type);
}

Getting Saved Messages

getSavedMessages accepts a chat identifier.

const messages = await client.getSavedMessages(chatId);
PreviousArchived ChatsNextMessage Drafts
© 2023-2026 MTKruto
TelegramGitHub
Appearance