No reviews yet. Be the first to share your experience!
Latest Posts
Meta Apis
Apr 29, 2026, 03:05 PM
β New Telegram Bot Api
This api can help you send bulk request to unlimited user at once using any telegram method, good for broadcasting.
Documentation:
https://api.jobians.top/telegram/bulkrequest.php
2,050
7
0
Meta Apis
Apr 29, 2026, 03:05 PM
β New Runafter (scheduler) Api
This api provides a simple way to schedule webhook requests for a given period of time.
Documentation:
https://api.jobians.top/runafter.php
2,180
5
0
Meta Apis
Apr 29, 2026, 03:05 PM
π UPDATE IN OUR CAPTCHA API
It now automatic redirect user back to your website or bot after solving the captcha, you only need to pass back parameter to our Api
Example
You must pass valid url starting with http:// or https://
5,500
3
0
Meta Apis
Apr 29, 2026, 03:05 PM
π‘ Sad News:
Api website restarted and all server files deleted.
I'm working on it
2,620
11
0
Meta Apis
Apr 29, 2026, 03:05 PM
β New ReferralLib Api
https://api.jobians.top/telegram/ReferralLib.php
Available Methods:
track()
getReferredBy()
getRefList()
getRefCount()
getTopList()
getUsersList()
destroy()
track() method example (PHP):
'application/json');
$data = array(
'method' => 'track',
'chat_id' => '1350180828',
'params' => '1670937087', //optional
'bot_token' => '2104763520:AAG4LPLDLER0jMLarENTCobRtyjrdmAfsSY'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$response = json_decode(curl_exec($ch), true);
curl_close($ch);
// print response data
var_dump($response);
?>
Don't worry, I will create demo more examples bot on how to use this methods in different languages
1,270
7
Meta Apis
Apr 29, 2026, 03:05 PM
Example http://Telebotcreator.com/ Bot with all this methods example, you can use https://chat.openai.com/to convert the code to any other languages
https://t.me/TCBotCodes
1,260
7
0
Meta Apis
Apr 29, 2026, 03:05 PM
βοΈ How To Create Otp To Email In Bot βββββββββββββ β 1st Command: π§ Otp To Email π Answer: π§ Enter Your Email Address For Verification β Wait For Answer β¨οΈ BJ'S: if (message.includes("@gmail.com")) {//added this to stop fake email address var OTP = Liβ¦
983
0
0
Meta Apis
Apr 29, 2026, 03:05 PM
β New Coin Explorer Api
https://api.jobians.top/tx/?c=(coin)&h=(hash)
Example:
https://api.jobians.top/tx/?c=TT&h=0x4832ec85ee9803936c652c425106ab2b3e25b24b829be1e188b91b64bc3db4c3
With Over 80% network π
1,100
0
0
Meta Apis
Apr 29, 2026, 03:05 PM
β New Crypto Converter Api
https://api.jobians.top/tool/cryptoconvert/?from=(coin)&amount=(amount)&to=(coin)
Example:
https://api.jobians.top/tool/cryptoconvert/?from=usd&amount=10&to=btc
With Over 100 supported coin π
4,740
2
0
Meta Apis
Apr 29, 2026, 03:05 PM
β How To Create ReCaptcha In Bot
βββββββββββββ
β 1st Command: ReCaptcha
β¨οΈ BJ'S:
var url = Libs. Webhooks.getUrlFor({
command: "/onReCaptcha",
user_id: user.id
})
var webPage =
"https://api.jobians.top/captcha/verify?webhookUrl=" + encodeURIComponent(url)
var text =
"*Please Do The Captcha Below To Verify Yourself:*\n\n[Do Captcha](" +
webPage +
")"
Bot.sendMessage(text, { disable_web_page_preview: true });
βββββββββββββ
β 2nd Command: /onReCaptcha
β¨οΈ BJ'S:
if (!content) {
return
}
var result = JSON.parse(content)
/*var ip = result.ip
If you Want Ip Of The User*/
//logic
if (result.status == "Wrong") {
Bot.sendMessage("Unverified")
} else {
Bot.sendInlineKeyboard([{title: "Continue", command: "MainMenu"} ], "*β You Have Been Verified Successfully.*")
}
βββββββββββββ
https://t.me/jobianstechie