getCustomEmojiStickers#

Returns: List[Sticker]

class aiogram.methods.get_custom_emoji_stickers.GetCustomEmojiStickers(*, custom_emoji_ids: List[str], **extra_data: Any)[source]#

Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of aiogram.types.sticker.Sticker objects.

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

custom_emoji_ids: List[str]#

List of custom emoji identifiers. At most 200 custom emoji identifiers can be specified.

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

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

Usage#

As bot method#

result: List[Sticker] = await bot.get_custom_emoji_stickers(...)

Method as object#

Imports:

  • from aiogram.methods.get_custom_emoji_stickers import GetCustomEmojiStickers

  • alias: from aiogram.methods import GetCustomEmojiStickers

With specific bot#

result: List[Sticker] = await bot(GetCustomEmojiStickers(...))