I have my own telegram channel and a telegram bot which is also a channel administrator.
I did not find how to do it with a telebot, but with a pyrogram
from pyrogram import Client
TARGET = -100....
api_id = 91...
api_hash = "2f01....."
link = 'https://t.me/+PP.........'
app = Client("my_account", api_id, api_hash)
async def main():
async with app:
async for event in app.get_chat_invite_link_joiners(chat_id=TARGET, invite_link=link):