I did not find information on limits on the simultaneous use of telegram bots, I mean how much people can use my telegram bot at the same time? I use webhook btw.
Asked
Active
Viewed 2,965 times
1 Answers
1
Well, the overall performance mostly depends on your server performance.
However, there are limits on sending messages to users:
When sending messages inside a particular chat, avoid sending more than one message per second. We may allow short bursts that go over this limit, but eventually you'll begin receiving 429 errors.
You can read about it in this section of API documentation.

Ivan Vinogradov
- 4,269
- 6
- 29
- 39
-
I saw that by default webhook can serve only 40 users, is it true? – Apr 05 '18 at 09:49
-
40 is the default value for `max_connections` parameter of `setWebhook` method. You can set it explicitly by yourself, the maximum value is 100. – Ivan Vinogradov Apr 05 '18 at 10:12
-
It represents the *Maximum allowed number of simultaneous HTTPS connections to the webhook for update deliver*. – Ivan Vinogradov Apr 05 '18 at 10:19