Does the Telegram API have the ability to display the number of channel boosts and the percentage of premium subscribers in the channel where a Human or Bot is the admin? I need solution on python
When I searched about this on the Internet, I found this link https://core.telegram.org/api/boost but could not understand how it works and how to get
You're looking at the wrong documentation.
You link to the Core document, but since you're talking about a Bot, focus on the Bot Documentation.
Looking at the recent bot api changes (API 7.1) you'll see :
So you will be able to keep track of the boost provided with the above mentioned fields, but currently there is no way to retrieve the 'percentage of premium subscribers' with a single call.
There is a getUserChatBoosts method that gives
But since that is on the user-level , it still requires some additional actions to count them all.