Guides

Premium Subscription GiftsBOT-ONLY

Bot Walkthrough 13 of 18

Bots can gift Telegram Premium subscriptions to users with Telegram Stars.

Gifting a Subscription

Use giftPremiumSubscription with the user’s identifier and a duration of 3, 6, or 12 months.

await client.giftPremiumSubscription(userId, 3);

Pass text to attach a message to the gift.

await client.giftPremiumSubscription(userId, 12, {
  text: "Thanks for being part of the community!",
});