fa
Feedback
344
مشترکین
اطلاعاتی وجود ندارد24 ساعت
اطلاعاتی وجود ندارد7 روز
اطلاعاتی وجود ندارد30 روز
آرشیو پست ها
🚀 Introducing @CWMSocialMediaGrowthBot – Boost Your Social Media Instantly! 🔥 Want to grow your social media presence effor
🚀 Introducing @CWMSocialMediaGrowthBot – Boost Your Social Media Instantly! 🔥 Want to grow your social media presence effortlessly? Meet @CWMSocialMediaGrowthBot, your one-stop solution for increasing likes, views, comments, followers, and more! ✨ Current Service:
✅ Telegram Post Views – Instantly boost views on your Telegram posts! 🚀 Coming Soon: More services like Instagram, YouTube, Twitter, and more!
💰 Payment Methods:
✔️ INR (for Indian users) ✔️ USDT (for global transactions)
📊 Features:
✅ Live Order Tracking – See real-time updates on your ordersBot Statistics – Track overall performance24/7 Support – Got a query? We’ve got you covered!
Start boosting your social media today! Try @CWMSocialMediaGrowthBot now! 🚀 🔗 Bot Link: @CWMSocialMediaGrowthBot #Made_in_Bots_Business

Repost from Coding with Mohit
🔥 Friends, I've created a new channel regarding Bots. 👉 Here, you'll get so many bots to use. 🔗 Link : https://t.me/codingwithmohitbots 😘 All of you, please join now. #CodingWithMohit #CodingWithMohitBots

Repost from Coding with Mohit
🥹 Thank you Family for helping me to achieve the Milestone of 600 YouTube Family 🥰 ❤️ We'll be back 🔜 there, currently bus
🥹 Thank you Family for helping me to achieve the Milestone of 600 YouTube Family 🥰
❤️ We'll be back 🔜 there, currently busy in some work 🥹 💯 Keep Supporting: https://youtube.com/@codingwithmohit05

Repost from Coding with Mohit
🇮🇳 Happy Republic Day! 🇮🇳 On this special day, let's honor the spirit of freedom, democracy, and unity that our Constitut
🇮🇳 Happy Republic Day! 🇮🇳 On this special day, let's honor the spirit of freedom, democracy, and unity that our Constitution represents. As coders and creators, let's continue to build a brighter, more innovative India together. Stay inspired, stay motivated, and keep coding! - Coding with Mohit

⁉️ Suggest next API ?

👉 Example code of Telegram Bot Broadcast API for Bots.Business 💫 Command : /start 🔥 Code :
const oldUser = User.getProperty("oldUser");

if (!oldUser) {
  HTTP.post({
    url: "https://broadcast-coding-with-mohits-projects.vercel.app/saveUser",
    body: {
      botToken: bot.token,
      userId: user.telegramid
    },
    background: true
  });

  User.setProperty("oldUser", true, "boolean");
}
💫 Command : /broadcast 🌟 Answer : *📢 Send the message to broadcast, it can be text, photo ( with caption ), video ( with caption ), audio ( with caption ), voice message ( with caption ), document ( with caption ), animation ( with caption ), sticker and video note.*Wait for answer : On 🔥 Code :
function broadcast(type, content, caption) {
  HTTP.post({
    url: "https://broadcast-coding-with-mohits-projects.vercel.app/broadcast",
    body: {
      botToken: bot.token,
      type: type,
      content: content,
      caption: caption
    },
    background: true
  });
  
  Bot.sendMessage("*📢 Broadcast has been started....*");
}

const caption = `📢 Broadcast by Admin !\n\n----------\n\n${request.caption}` || "📢 Broadcast by Admin !";

if (request.text) {
  HTTP.post({
    url: "https://broadcast-coding-with-mohits-projects.vercel.app/broadcast",
    body: {
      botToken: bot.token,
      type: "message",
      content: `📢 Broadcast by Admin !\n\n${message}`
    },
    background: true
  });
  return;
}

if (request.photo[0]) {
  return broadcast("photo", request.photo[0].file_id, caption);
}

if (request.video) {
  return broadcast("video", request.video.file_id, caption);
}

if (request.audio) {
  return broadcast("audio", request.audio.file_id, caption);
}

if (request.voice) {
  return broadcast("voice", request.voice.file_id, caption);
}

if (request.document) {
  return broadcast("document", request.document.file_id, caption);
}

if (request.animation) {
  return broadcast("animation", request.animation.file_id, caption);
}

if (request.sticker) {
  return broadcast("sticker", request.sticker.file_id, caption);
}

if (request.video_note) {
  return broadcast("videoNote", request.video_note.file_id, caption);
}
❤️ API created by : Coding with Mohit APIs © Credits : Coding with Mohit APIs 🤝 Share & Support Us 🤝

🔥 Telegram Bot Broadcast API ( POST Request Only ) ✅ API : https://broadcast-coding-with-mohits-projects.vercel.app/ 🌟 1st Endpoint to save user : https://broadcast-coding-with-mohits-projects.vercel.app/saveUser 👉 Body Parameters : - botToken: Your telegram bot API Token - userId: User's telegram ID ✨ Response :
{
  "message": "User saved successfully",
  "botUser": {
    "_id": "677cd28e12d8324e627c28d5",
    "botToken": "your-bot-token",
    "__v": 0,
    "userIds": ["6785059068"]
  }
}
🌟 2nd Endpoint to broadcast : https://broadcast-coding-with-mohits-projects.vercel.app/broadcast 👉 Body Parameters : - botToken: Your telegram bot API Token, - type: message type ( message, photo, video, audio, sticker, animation, gif ), - content: the content according to the type - caption: optional if sending photo, video, etc. ✨ Response :
{
  "message": "Broadcast sent successfully"
}
❤️ API created by : Coding with Mohit APIs © Credits : Coding with Mohit APIs 🤝 Share & Support Us 🤝

👉 Example code of Telegram Channel Membership Verification API for Telebot Creator 🔥 Code :
botToken = Bot.info().token # retrieves the bot's token
channels = ['@codingwithmohit', '@codingwithmohittutorials', '@codingwithmohitapis'] # list of your channel usernames/ids 
userId = u # retrieves the user's telegram id 
api = 'https://verify-membership-coding-with-mohits-projects.vercel.app/verify-membership' # the api url
# the body parameters
body = {
    'botToken': botToken,
    'chatIds': channels,
    'userId': userId
}
response = bunchify(HTTP.post(url=api, json=body).json()) # send a post request and fetch the data 
joined = response['joinedAllChats'] # capture the joinedAllChats data

# check if user has joined 
if joined != True:
    bot.sendMessage("Please join our all channels."); # send a message to join channels
else:
    bot.sendMessage("Thanks for joining our channels."); # send a thank you message
    
    # You can do further operations here 
🙂 I know that there's already a function in TBC to fetch membership but I'm posting it as just an example. ⚠️ Note : No Bot Token or any data is stored so you can use freely. ❤️ API created by : Coding with Mohit APIs © Credits : Coding with Mohit APIs 🤝 Share & Support Us 🤝

Repost from Coding with Mohit
🚀 Launch Announcement: CWM Bot Maker Bot is Here! 🎉 🌟 Ever dreamt of creating your own Telegram bot effortlessly? Now it’s
🚀 Launch Announcement: CWM Bot Maker Bot is Here! 🎉 🌟 Ever dreamt of creating your own Telegram bot effortlessly? Now it’s possible with CWM Bot Maker Bot! 🔧 What is it?
CWM Bot Maker Bot lets you create your own fully functional Telegram bot in seconds! Select your preferred bot type and just send your bot token, and our bot will do the rest—cloning the selected bot to your token instantly.
🔥 Features:
✅ Flexible Plans ✅ Auto Deposit System ✅ Transaction History ✅ No Coding Required ✅ Multiple bot types to choose from ✅ Quick Setup ✅ Lightning-fast bot creation
🎯 Start your bot-making journey now: 👉 CWM Bot Maker Bot Don’t wait—bring your ideas to life today! 💡 #Made_in_Bots_Business #CWM_Bot_Maker_Bot

👉 Example code of Telegram Channel Membership Verification API for Bots.Business 💫 Command : check 🔥 Code :
if (!content) {
  const botToken = bot.token; // retrieves your bot's token
  const channels = ["@codingwithmohit", "@codingwithmohittutorials", "@codingwithmohitapis"]; // your chat usernames/ids
  const userId = user.telegramid; // retrieves user's telegram id 
  const api = "https://verify-membership-coding-with-mohits-projects.vercel.app/verify-membership"; // the api url

  // Make an HTTP ( Post ) request 
  HTTP.post({
    url: url,
    body: {
      botToken: botToken,
      chatIds: channels,
      userId: userId
    },
    success: "check"
  });
  return; // stop the execution 
} 

const response = JSON.parse(content); // retrieves the JSON response from API
const joined = response.joinedAllChats; // retrieves the joinedAllChats data from response

// Check of the user has not joined
if (joined !== true) {
  return Bot.sendMessage("Please join our all channels"); // stop the execution with a message
}

Bot.sendMessage("Thanks for joining our channels."); // thank you message for joining the channels

// You can do more operations here....
⚠️ Note : No Bot Token or any data is stored so you can use freely. ❤️ API created by : Coding with Mohit APIs © Credits : Coding with Mohit APIs 🤝 Share & Support Us 🤝

🔥 Multiple Telegram Channel Membership Verification API ( POST Request Only ) ✅ API : https://verify-membership-coding-with-mohits-projects.vercel.app/verify-membership 👉 Body Parameters : - botToken: Your telegram bot API Token - chatIds: Array of chats - userId: User's telegram ID ✨ Response :
{
  "ok": true,
  "userId": 6040616626,
  "joinedAllChats": true,
  "membership": [
    {
      "chatId": "@codingwithmohit",
      "status": "administrator",
      "isMember": true
    },
    {
      "chatId": "@codingwithmohittutorials",
      "status": "administrator",
      "isMember": true
    }
  ]
}
⚠️ Note : No Bot Token or any data is stored so you can use freely. ❤️ API created by : Coding with Mohit APIs © Credits : Coding with Mohit APIs 🤝 Share & Support Us 🤝

❤️ Welcome to our channel Coding with Mohit APIs. 🔥 You'll get free to use APIs here. #CodingWithMohitAPIs