get_chat_member()¶
- Client.get_chat_member()¶
 Get information about one member of a chat.
Usable by Users Bots
- Parameters:¶
 chat_id (
int|str) – Unique identifier (int) or username (str) of the target chat. You can also use chat public link in form of t.me/<username> (str).user_id (
int|str) – Unique identifier (int) or username (str) of the target user. For you yourself you can simply use “me” or “self”. For a contact that exists in your Telegram address book you can use his phone number (str). You can also use user profile link in form of t.me/<username> (str).
- Returns:¶
 ChatMember– On success, a chat member is returned.
Example
member = await app.get_chat_member(chat_id, "me") print(member)