soumyadeepdas/tbl_WebBotPublic · Community Store Listing

Demo WebApp

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

commands/products.js

javascript · 44 lines · click line # to share

1/**#command2name: products3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12let products = [13  {14    id: 1,15    name: "Premium Bot Subscription",16    price: 9.99,17    currency: "USD",18    available: true,19    category: "Software"20  },21  {22    id: 2, 23    name: "Custom Bot Development",24    price: 99.99,25    currency: "USD", 26    available: true,27    category: "Services"28  },29  {30    id: 3,31    name: "API Access Token",32    price: 4.99,33    currency: "USD",34    available: true,35    category: "Digital"36  }37];38 39res.json({40  status: "success",41  count: products.length,42  products: products,43  bot: bot.id44});