bkjioapk/IDBotRiom_botPublic · Bot Template
AIThis bot helps users find Telegram IDs of users, groups, channels, and bots. It provides commands to get your own ID via /me or inline queries, share chats or users for ID retrieval with /start and the wildcard handler, and includes helpful options like copy buttons and direct chat links. The bot uses TBL APIs such as Bot, Api, and user data to handle messages and inline queries securely.
Utilitytelegram idsid finderinline querychat shareutility botuser id
6 commands0 envUpdated 7d agoCreated Aug 31, 2026
commands/_help.js
javascript · 31 lines
1/**#command2name: /help3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (chat.type != "private") return;13 14 const text = update.message.text.trim();15 16 const helpText = `17<b>What this bot can do:</b>18• Get Telegram IDs of users, groups or channels.19• You can also use the chat share options for quick access.20 21<b>Examples:</b>22Forward any user’s or channel’s message 23 24Use chat share menu to send a group, channel, or bot25 `26 27 Api.sendMessage({28 text: helpText,29 parse_mode: "HTML",30 message_effect_id: "5107584321108051014"31 });