2019-11-16 22:32:05 +02:00
# 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
2020-04-11 20:15:03 +03:00
### As bot method
2019-11-16 22:32:05 +02:00
```python3
result: int = await bot.get_chat_members_count(...)
```
### Method as object
Imports:
2019-12-11 16:52:21 +02:00
- `from aiogram.methods import GetChatMembersCount`
- `from aiogram.api.methods import GetChatMembersCount`
- `from aiogram.api.methods.get_chat_members_count import GetChatMembersCount`
2019-11-16 22:32:05 +02:00
2020-01-11 22:59:14 +02:00
#### In handlers with current bot
2019-11-16 22:32:05 +02:00
```python3
2020-01-11 22:59:14 +02:00
result: int = await GetChatMembersCount(...)
2019-11-16 22:32:05 +02:00
```
2020-01-11 22:59:14 +02:00
#### With specific bot
2019-11-16 22:32:05 +02:00
```python3
2020-01-11 22:59:14 +02:00
result: int = await bot(GetChatMembersCount(...))
2019-11-16 22:32:05 +02:00
```
2020-01-11 22:59:14 +02:00
2019-11-16 22:32:05 +02:00
## Related pages:
- [Official documentation ](https://core.telegram.org/bots/api#getchatmemberscount )