You can query the Telegram API for the current number of members in a Telegram channel. But is it possible to query for the number of members on past dates? Ideally, I would like to know the number of members on every day for the last year:
| Date | Channel Members |
|------------|-----------------|
| 2020-07-28 | 1234 |
| 2020-07-27 | 1342 |
| 2020-07-26 | 1423 |
| ... | ... |
| 2019-07-28 | 123 |
Is there a way to retrieve this information via the Telegram API? I am using telethon
on Python 3.