abirahmad1208/TG_ID_Information_BotPublic · Bot Template
An advanced Telegram User Info Bot that instantly fetches and displays a user's Telegram ID, username, first name, last name, and profile details with clean formatting.
Utilitytelegram-iduser-infochat-shareinline-queryid-finderkeyboard
6 commands0 envUpdated 29d agoCreated Jul 20, 2026
commands/_help.js
javascript · 28 lines
1/**#command2name: /help3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Bot.sendMessage({13 text: "<b>🤖 TG ID Information Bot - Help Menu</b>\n\n" +14 "Use this bot to easily fetch Telegram IDs for users, groups, channels, or bots!\n\n" +15 "<b>📌 How to get IDs:</b>\n\n" +16 "<b>1. Your Own Info:</b>\n" +17 "• Type /me or /start to get your personal Telegram ID and profile details.\n\n" +18 "<b>2. Shared Chat/User ID:</b>\n" +19 "• Click the <b>Share Chat</b> button in the menu and select any user, group, channel, or bot.\n\n" +20 "<b>3. Forwarded Message:</b>\n" +21 "• Simply forward any message from a user, channel, or group directly into this chat.\n\n" +22 "<b>⚡ Available Commands:</b>\n" +23 "• /start - Start the bot & get your ID\n" +24 "• /me - Get your full profile information\n" +25 "• /help - Display this help guide\n\n" +26 "<i>Need more features? Stay tuned for future updates!</i>",27 parse_mode: "HTML"28});