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. 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)

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

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(...))