Stickers

getStickerSet()

Use this method to get a sticker set. On success, a StickerSet object is returned.

parameters

parametertyperequireddescription
namestringrequiredName of the sticker set

returns

StickerSet

usage in yaebal

not (yet) hard-typed on Api — call it through the generic .call<T>() escape hatch documented in @yaebal/types.

bot.ts
import type { GetStickerSetParams, StickerSet } from "@yaebal/types";

await bot.api.call<StickerSet>("getStickerSet", {
  name: "...",
} satisfies GetStickerSetParams);