getChat#

Returns: Chat

class aiogram.methods.get_chat.GetChat(*, chat_id: int | str, **extra_data: Any)[source]#

Use this method to get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.). Returns a aiogram.types.chat.Chat object on success.

Source: https://core.telegram.org/bots/api#getchat

chat_id: int | str#

Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername)

Usage#

As bot method#

result: Chat = await bot.get_chat(...)

Method as object#

Imports:

  • from aiogram.methods.get_chat import GetChat

  • alias: from aiogram.methods import GetChat

With specific bot#

result: Chat = await bot(GetChat(...))