Premium Subscription GiftsBOT-ONLY
Bot Walkthrough 17 of 18
Bots can gift Telegram Premium subscriptions to users with Telegram Stars.
Gifting a Subscription
giftPremiumSubscription accepts a user identifier and a duration of 3, 6, or 12 months.
await client.giftPremiumSubscription(userId, 3);
The optional text field attaches a message to the gift.
await client.giftPremiumSubscription(userId, 12, {
text: "Thanks for being part of the community!",
});