Stickers

getCustomEmojiStickers()

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

parameters

parametertyperequireddescription
custom_emoji_idsstring[]requiredA JSON-serialized list of custom emoji identifiers. At most 200 custom emoji identifiers can be specified.

returns

Sticker[]

usage in yaebal

getCustomEmojiStickers is directly typed on Api — call it straight off bot.api.

bot.ts
import type { GetCustomEmojiStickersParams } from "@yaebal/types";

await bot.api.getCustomEmojiStickers({
  custom_emoji_ids: [],
} satisfies GetCustomEmojiStickersParams);