soumyadeepdas/tbl_WebBotPublic · Community Store Listing

Demo WebApp

ProfileTelegram
14 commands0 envUpdated 19d agoCreated Oct 27, 2025
Back to folder

commands/_start.js

javascript · 31 lines · click line # to share

1/**#command2name: /start3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Api.sendMessage({13  chat_id: chat.id,14  text: `<b>Webhook Demo Bot</b> 😊15 16Choose what you want to create:17 18• <b>Make API</b> - Generate API endpoints19• <b>Make Web</b> - Create web interfaces  20 21Select an option to see practical examples:`,22  parse_mode: "HTML",23  reply_markup: {24    keyboard: [25      [{text: "🔗 Make API"}],26      [{text: "🌐 Make Web"}], 27    ],28    resize_keyboard: true29  }30});31