Pʀɪᴠᴀᴛᴇs Bᴏᴛs ⚡
🖐🏻 Welcome to @Privates_Bots! 🤖 Hello, Everyone! Here, I’ll Teach You How To Create Telegram Bots. ➡ Join Our Discussion Group: @Private_Bots_Chats 📞 For Sponsorships, Ads, or Promotions, Contact Us At @PB_Sponsorship.
Show more📈 Analytical overview of Telegram channel Pʀɪᴠᴀᴛᴇs Bᴏᴛs ⚡
Channel Pʀɪᴠᴀᴛᴇs Bᴏᴛs ⚡ (@privates_bots) in the English language segment is an active participant. Currently, the community unites 13 408 subscribers, ranking 7 115 in the Technologies & Applications category and 39 002 in the India region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 13 408 subscribers.
According to the latest data from 23 January, 2025, the channel demonstrates stable activity. Although there has been a change in the number of participants by 203 over the last 30 days and by 0 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 18.77%. Within the first 24 hours after publication, content typically collects 6.64% reactions from the total number of subscribers.
- Post reach: On average, each post receives 2 517 views. Within the first day, a publication typically gains 890 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 28.
- Thematic interests: Content is focused on key topics such as \n\n, api, vehicle, ssd, insurance.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“🖐🏻 Welcome to @Privates_Bots!
🤖 Hello, Everyone! Here, I’ll Teach You How To Create Telegram Bots.
➡ Join Our Discussion Group: @Private_Bots_Chats
📞 For Sponsorships, Ads, or Promotions, Contact Us At @PB_Sponsorship.”
Thanks to the high frequency of updates (latest data received on 18 March, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
✉️ DM @Swastik_Raj With Your Pack
⚠️ Note : Members Doesn't Based On Hrs. ➡️ It Depends On How Attractive Your Ad Is.💱 Payment Method - https://t.me/PB_Sponsorship/11
🚀 How to Get Your Telegram Bot Running on Swastik Hosting.1️⃣ Upload Your Bot Files First, upload your bot’s PHP files to the platform. If needed, you can make quick edits to the file name or the code. 2️⃣ Get Your URL Once the files are uploaded, you’ll receive a unique URL for your bot. You’ll also see a Set Webhook button—this is where the magic happens! 3️⃣ Set Up the Webhook Click on the Set Webhook button and enter the URL you received along with your Bot Token. A simple form will appear to make this process super easy. 🎉 That’s It! If everything is set up correctly, your bot will start running instantly! It’s quick, simple, and hassle-free—give it a try now! 💻 Let me know if you run into any issues.
*
🔍 BJS :
function encodeVehicleNumber(vehicleNumber) {
return encodeURIComponent(vehicleNumber);
}
var vehicleNumber = message; // user input
var encodedVehicleNumber = encodeVehicleNumber(vehicleNumber);
// Make the HTTP GET request
HTTP.get({
url: "https://botmaker.serv00.net/vehicle-info.php?number=" + encodedVehicleNumber,
success: "/onVehicleInfoResponse" // Define this command to handle the response
});
💓 Command : /onVehicleInfoResponse
🔍 BJS :
var response = JSON.parse(content); // Parse the API response
if (response.status === "success") {
var data = response.data; // Extract the data object
// Format the message with emojis, bold, mono, and double line breaks
var message = "🚗 *Vehicle Details* 🚗\n\n";
message += "🔢 *Vehicle Number*: `" + (data.VEHICLE_NUM || "N/A") + "`\n\n";
message += "🏢 *Brand*: `" + (data.BRAND || "N/A") + "`\n\n";
message += "🚙 *Model*: `" + (data.VEHICLE_MODEL || "N/A") + "`\n\n";
message += "👤 *Owner*: `" + (data.NAME || "N/A") + "`\n\n";
message += "🛡️ *Role*: `" + (data.ROLE || "N/A") + "`\n\n";
message += "🏦 *Insurance By*: `" + (data.INSURANCE_BY || "N/A") + "`\n\n";
message += "📅 *Insurance Expiry*: `" + (data.insurance_Expiry_Date || "N/A") + "`\n\n";
message += "⏳ *Days Left*: `" + (data.DAYS_LEFT || "N/A") + "`\n\n";
message += "👥 *Owner Number*: `" + (data.OWNER_NUM || "N/A") + "`\n\n";
message += "🏗️ *Commercial*: `" + (data.isCommercial || "N/A") + "`\n\n";
message += "🗓️ *Registration Date*: `" + (data.REG_DATE || "N/A") + "`\n\n";
message += "🤑 *Eligible for Sell*: `" + (data.SELL_ELIGIBLE || "N/A") + "`\n\n";
message += "🛍️ *Eligible for Buy*: `" + (data.BUY_ELIGIBLE || "N/A") + "`\n\n";
message += "🔍 *Probable Vehicle Number*: `" + (data.PROBABLE_VEHICLE_NUM || "N/A") + "`\n\n";
message += "📅 *Date of Insurance Expiry*: `" + (data.date_of_insurance_expiry || "N/A") + "`\n\n";
message += "🎂 *Vehicle Age*: `" + (data.AGE || "N/A") + "`\n\n";
message += "🛡️ *Insurance Eligible*: `" + (data.INSURANCE_ELIGIBLE || "N/A") + "`\n\n";
message += "❌ *Is Expired*: `" + (data.IS_EXPIRED || "N/A") + "`\n\n";
message += "❌ *Insurance Expired*: `" + (data.INSURANCE_EXPIRED || "N/A") + "`\n\n";
message += "📍 *Pincode*: `" + (data.PINCODE || "N/A") + "`\n\n";
message += "🚘 *Probable Vehicle Type*: `" + (data.PROBABLE_VEHICLE_TYPE || "N/A") + "`\n\n";
message += "📲 *Source App*: `" + (data.SRC_APP || "N/A") + "`\n\n";
message += "🛑 *Interstitial*: `" + (data.INTERSTITIAL || "N/A") + "`\n\n";
message += "👤 *User ID*: `" + (data.USERID || "N/A") + "`\n\n";
message += "📅 *Created At*: `" + (data.CREATED_AT || "N/A") + "`\n\n";
message += "📆 *Expiring Today*: `" + (data.expiringtoday || "N/A") + "`\n\n";
message += "📆 *Expiring in One Day*: `" + (data.expiringinoneday || "N/A") + "`\n\n";
message += "🚗 *Vehicle Type*: `" + (data.VEHICLE_TYPE || "N/A") + "`\n\n";
message += "🔒 *Is Logged*: `" + (data.IS_LOGGED || "N/A") + "`\n\n";
message += "📱 *App Open Count*: `" + (data.APP_OPEN || "N/A") + "`\n\n";
message += "🚙 *Probable Vehicle Model*: `" + (data.PROBABLE_VEHICLE_MODEL || "N/A") + "`\n\n";
if (response.image) {
message += "🖼️ *Vehicle Image*: [Click here](" + response.image + ")\n\n";
} else {
message += "🖼️ *Vehicle Image*: `Image not available`\n\n";
}
// Use the Api.sendMessage method to send the formatted message
Api.sendMessage({
text: message,
parse_mode: "Markdown" // Ensure proper formatting
});
} else {
// Handle cases where the API response status is not "success"
Api.sendMessage({
text: "❌ Failed to fetch vehicle information. Please try again.\n\n",
parse_mode: "Markdown"
});
}
⚠️ Give credit if you are posting on your channel.👨💻 Created By: @Swastik_Raj © Credit: @Privates_Bots
https://botmaker.serv00.net/vehicle-info.php?number={vehicle_number}
✨ Example API Request:
https://botmaker.serv00.net/vehicle-info.php?number=MH40AK3683📥 Example Success Response:
💡 How It Works: Simply provide the vehicle registration number as a query parameter, and the API will return detailed information about the vehicle, including insurance status, ownership details, and more! ✨ Features: - Access to real-time vehicle data - Comprehensive details including insurance and ownership - Easy integration into your applications 📈 Use Cases: - Vehicle verification for buyers and sellers - Insurance status checks - Fleet management - And much more! Get started today and gain valuable insights into vehicle information! For more details, feel free to reach out. 🔰 Creator: @Privates_Bots ©Copyright: @Privates_Bots{ "image": "https://imgd.aeplcdn.com/664x374//n/cw/ec/131179/bolero-exterior-right-front-three-quarter-2.jpeg?isig=0", "data": { "BUY_ELIGIBLE": "false", "OWNER_NUM": "2", "IS_EXPIRED": "false", "CREATED_AT": "LESS_THAN_30", "INTERSTITIAL": "SKIPPED_NEW", "PROBABLE_VEHICLE_NUM": "MH40AK3683", "date_of_insurance_expiry": "18-Nov-2025", "DAYS_LEFT": "MORE_THAN_60", "APP_OPEN": "1", "VEHICLE_NUM": "MH40AK3683", "PINCODE": "441122", "ROLE": "OWNER", "OWNER": "false", "date_of_insur_expiry": "2025-11-18 00:11:00", "IS_LOGGED": "false", "USERID": "67114917ed2d815947f62b13", "PROBABLE_VEHICLE_TYPE": "CAR", "INSURANCE_ELIGIBLE": "false", "AGE": "9", "insurance_Expiry_Date": "2025-11-18", "INSURANCE_BY": "Tata AIG General Insurance Co. Ltd.", "expiringtoday": "false", "INSURANCE_EXPIRED": "false", "isCommercial": "true", "REG_DATE": "19-Nov-2015", "SRC_APP": "android_car-info", "mobile": "NA", "VEHICLE_TYPE": "CAR", "expiringinoneday": "false", "userId": "67114917ed2d815947f62b13", "VEHICLE_MODEL": "Bolero", "BRAND": "Mahindra", "NAME": "SURYAKANT UMASHANKAR MISHRA", "PROBABLE_VEHICLE_MODEL": "Bolero", "SELL_ELIGIBLE": "true" }, "creator": "t.me/privates_bots", "status": "success", "requested_number": "MH40AK3683" }
