mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-06 07:50:32 +00:00
1 KiB
1 KiB
getChatMembersCount
Description
Use this method to get the number of members in a chat. Returns Int on success.
Arguments
| Name | Type | Description |
|---|---|---|
chat_id |
#!python3 Union[int, str] |
Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) |
Response
Type: #!python3 int
Description: Returns Int on success.
Usage
As bot method
result: int = await bot.get_chat_members_count(...)
Method as object
Imports:
from aiogram.methods import GetChatMembersCountfrom aiogram.api.methods import GetChatMembersCountfrom aiogram.api.methods.get_chat_members_count import GetChatMembersCount
In handlers with current bot
result: int = await GetChatMembersCount(...)
With specific bot
result: int = await bot(GetChatMembersCount(...))