suvo_/ImglyBotPublic · Bot Template

AIThis bot searches images through a Pinterest-related HTTP API and delivers results in private chats, inline mode, and guest business queries, with a search-more inline button and copy URL action. It tracks referrals from /start links, records referrer counts and lists, and displays referral benefits. The bot also handles business sticker messages by matching emoji and replying with a random sticker from the same set, asks users for feedback after feature usage, and includes an admin-only broadcast system plus a token-based clone-bot request flow.

Utilityimage-searchpinterestinline-modereferralbroadcastclone-bot
ProfileTelegram
27 commands3 envUpdated 3d agoCreated Jul 2, 2026
Back to folder

commands/on_br_create.js

javascript · 29 lines

Raw
1/**#command2name: on_br_create3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12const d = options;13 14const text =15`📢 <b>Broadcast Started</b>16 17🆔 Broadcast ID:18<code>${d.broadcast_id}</code>19 20👥 Total Users: <b>${d.total_chats}</b>21📌 Status: <b>${d.status}</b>22 23🚀 Broadcast delivery is now processing.`;24 25Api.sendMessage({26  chat_id: d.runner_user_id,27  text: text,28  parse_mode: "HTML"29});