๐ก๐ฅ ๐๐ข๐๐๐ซ ๐๐ข๐ง๐ฆ โก
Kanalga Telegramโda oโtish
NR CODEX BOTSโก ๐ Welcome to NR CODEX BOTS ๐น What We Offer? Advanced Telegram Bots ๐ค AI-Powered Automation Tools โก Tech and tools Bots ๐ฎ Custom Coding & Development ๐ป ๐ Website: Coming Soon ๐ฉ Contact: @nilay_vii
Ko'proq ko'rsatish1 046
Obunachilar
Ma'lumot yo'q24 soatlar
-257 kunlar
-6930 kunlar
Postlar arxiv
I have a telegram like group anyone want to buy ?? Dm me @nilay_vii
JWT TOKEN GENERATOR API ๐ฅ
RELEASE : OB1 - OB50 โก
FULL API ๐ฅ
https://jnl-gen-jwt.vercel.app/token?uid={uid}&password={password}EXAMPLE ๐ฅ
https://jnl-gen-jwt.vercel.app/token?uid=3993678816&password=F57F259899377C1C25C2B8FB47C9790B859CA3FF3BA4F3D5EB7805FE5FB88EBA
{
"credit": "@J4NIL_CODEX",
"status": "live",
"token": "eyJhbGciOiJIUzI1NiIsInN2ciI6IjEiLCJ0eXAiOiJKV1QifQ.eyJhY2NvdW50X2lkIjoxMjQ1OTA0NDY3Niwibmlja25hbWUiOiJXYXJtMVc5STd3OCIsIm5vdGlfcmVnaW9uIjoiQkQiLCJsb2NrX3JlZ2lvbiI6IkJEIiwiZXh0ZXJuYWxfaWQiOiI1YmZkM2EzZWRmMTI1YjNjMjZmNmNiNzkzOTdkNWJlNSIsImV4dGVybmFsX3R5cGUiOjQsInBsYXRfaWQiOjEsImNsaWVudF92ZXJzaW9uIjoiMS4xMDguMyIsImVtdWxhdG9yX3Njb3JlIjoxMDAsImlzX2VtdWxhdG9yIjp0cnVlLCJjb3VudHJ5X2NvZGUiOiJVUyIsImV4dGVybmFsX3VpZCI6Mzk5MzY3ODgxNiwicmVnX2F2YXRhciI6MTAyMDAwMDA3LCJzb3VyY2UiOjQsImxvY2tfcmVnaW9uX3RpbWUiOjE3NTA3NDk5NzIsImNsaWVudF90eXBlIjoyLCJzaWduYXR1cmVfbWQ1IjoiIiwidXNpbmdfdmVyc2lvbiI6MSwicmVsZWFzZV9jaGFubmVsIjoiM3JkX3BhcnR5IiwicmVsZWFzZV92ZXJzaW9uIjoiT0I1MCIsImV4cCI6MTc1MzkyNDE3OX0.x1u-4nt47NlC3FNJPn_-qd0B5e7PPkA7SD0e0ZTHRHc",
"uid": "3993678816"
}
CREDIT @Gamer_49
CHANEL @TEAM_JENILREGION CHECK API (OB50 FIXED) โ
from flask import Flask, request, jsonify
import requests
import json
app = Flask(__name__)
def get_player_info(Id):
url = "https://topup.pk/api/auth/player_id_login"
headers = {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, deflate, br, zstd",
"Accept-Language": "en-MM,en-US;q=0.9,en;q=0.8",
"Content-Type": "application/json",
"Origin": "https://topup.pk",
"Referer": "https://topup.pk/",
"sec-ch-ua": '"Not)A;Brand";v="8", "Chromium";v="138", "Android WebView";v="138"',
"sec-ch-ua-mobile": "?1",
"sec-ch-ua-platform": '"Android"',
"Sec-Fetch-Dest": "empty",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Site": "same-origin",
"User-Agent": "Mozilla/5.0 (Linux; Android 15; RMX5070 Build/UKQ1.231108.001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.157 Mobile Safari/537.36",
"X-Requested-With": "mark.via.gp",
"Cookie": "source=mb; region=PK; mspid2=13c49fb51ece78886ebf7108a4907756; _fbp=fb.1.1753985808817.794945392376454660; language=en; datadome=WQaG3HalUB3PsGoSXY3TdcrSQextsSFwkOp1cqZtJ7Ax4YkiERHUgkgHlEAIccQO~w8dzTGM70D9SzaH7vymmEqOrVeX5pIsPVE22Uf3TDu6W3WG7j36ulnTg2DltRO7; session_key=hq02g63z3zjcumm76mafcooitj7nc79y",
}
payload = {
"app_id": 100067,
"login_id": f"{Id}",
}
try:
response = requests.post(url, headers=headers, json=payload, timeout=15)
response.raise_for_status()
return response
except requests.exceptions.HTTPError as errh:
print(f"HTTP Error: {errh} - Response: {errh.response.text if errh.response is not None else 'No response body'}")
return errh.response if errh.response is not None else requests.Response()
except requests.exceptions.ConnectionError as errc:
print(f"Error Connecting: {errc}")
return requests.Response()
except requests.exceptions.Timeout as errt:
print(f"Timeout Error: {errt}")
return requests.Response()
except requests.exceptions.RequestException as err:
print(f"An unexpected request error occurred: {err}")
return requests.Response()
@app.route('/region', methods=['GET'])
def region():
uid = request.args.get('uid')
if not uid:
return jsonify({"message": "Please provide a UID"}), 200
response = get_player_info(uid)
try:
if response.status_code == 200:
original_response = response.json()
if not original_response.get('nickname') and not original_response.get('region'):
if original_response.get('error') == 'error_player_id_invalid':
return jsonify({"message": "UID not found, please check the UID (Error: Player ID invalid)"}), 200
return jsonify({"message": "UID not found, please check the UID"}), 200
return jsonify({
"uid": uid,
"nickname": original_response.get('nickname', ''),
"region": original_response.get('region', '')
})
else:
return jsonify({
"message": f"Failed to retrieve UID info. Upstream API returned status {response.status_code}. Please check the UID or try again later.",
"upstream_response": response.text
}), 200
except requests.exceptions.JSONDecodeError:
return jsonify({"message": "Error: Upstream API returned non-JSON response. UID might not be found or API structure changed."}), 200
except Exception as e:
return jsonify({"message": f"An unexpected error occurred: {str(e)}. UID might not be found."}), 200
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)
Example:
http://127.0.0.1:5000/region?uid=2263549557
JSON Response:
{
"uid": "2263549557",
"nickname": "N1L-UXใ
คแตหฃแต",
"region": "IND"
}
Credit: @nilay_vii
Join Telegram: @nr_codexLIKE API:
https://eg-free-likeapi-1.vercel.app/like?uid={uid}&server_name={region}&key={key}RESPONSE:
https://eg-free-likeapi-1.vercel.app/like?uid=2204456774&server_name=ind&key=ENDxDANGERSUPPORTED REGION:
ind
API KEY: ENDxDANGER
RESPONSE
{ "LikesGivenByAPI": 100, "LikesafterCommand": 5307, "LikesbeforeCommand": 5407, "PlayerNickname": "Z4X๏พ MAXX", "UID": 2204456774,
"status": 2 }
SOURCE CODE CREDIT:
@DANGER_FF_LIKE
CREDIT: @ENDING_GAMER_77๐ Today is my Birthday! ๐
To celebrate, I've collab with @GAMIGO_YT and launched a special bot: @unique_profile_bot
๐ฅ For today only โ it's completely FREE!
โ
No verification required
๐ซ No forced channel joins
Just enjoy and create your unique profile!
๐ฅ Tutorial video: Click here
Direct number to adhar card bot ๐
NUMBER_DETAILSFREE_BOT
Join for my link to get 2 point extra โค๏ธ
#first time in tg ๐
For any proxy server giveaway join this group
https://t.me/devproxychat
It will give you free proxy server giveaway and tips.
FF FREE INFO API ๐
WITHOUT NEED REGION ๐
INFO API:
https://nr-codex-info.vercel.app/get?uid={uid}Example:
https://nr-codex-info.vercel.app/get?uid=2263549557Response:
{
"AccountInfo": {
"AccountAvatarId": 902000047,
"AccountBPBadges": 80,
"AccountBPID": 1001000086,
"AccountBannerId": 901000014,
"AccountCreateTime": "1597138127",
"AccountEXP": 1747657,
"AccountLastLogin": "1752809403",
"AccountLevel": 65,
"AccountLikes": 91847,
"AccountName": "N1L-UXใ
คแตหฃแต",
"AccountRegion": "IND",
"AccountSeasonId": 46,
"AccountType": 1,
"BrMaxRank": 321,
"BrRankPoint": 3648,
"CsMaxRank": 322,
"CsRankPoint": 123,
"EquippedWeapon": [907102308, 912049002],
"ReleaseVersion": "OB49",
"ShowBrRank": true,
"ShowCsRank": true,
"Title": null
},
"AccountProfileInfo": {
"EquippedOutfit": [214000053, 204000105, 205000101, 203000814, 211000087, 211000017],
"EquippedSkills": [16, 22016, 8, 1, 16, 1106, 8, 2, 16, 4506, 8, 3, 16, 2506]
},
"GuildInfo": {
"GuildCapacity": 25,
"GuildID": "3042959265",
"GuildLevel": 2,
"GuildMember": 4,
"GuildName": "ฦฌสแดใ
คฦคแดสแดแด
ษช๊ฑแด",
"GuildOwner": "2263549557"
},
"captainBasicInfo": {
"accountId": "2263549557",
"accountPrefers": {
"brPregameShowChoices": [1]
},
"accountType": 1,
"badgeCnt": 80,
"badgeId": 1001000086,
"bannerId": 901000014,
"createAt": "1597138127",
"csMaxRank": 322,
"csRank": 322,
"csRankingPoints": 123,
"exp": 1747657,
"externalIconInfo": {
"showType": "ExternalIconShowType_FRIEND",
"status": "ExternalIconStatus_NOT_IN_USE"
},
"headPic": 902000047,
"lastLoginAt": "1752809403",
"level": 65,
"liked": 91847,
"maxRank": 321,
"nickname": "N1L-UXใ
คแตหฃแต",
"rank": 321,
"rankingPoints": 3648,
"region": "IND",
"releaseVersion": "OB49",
"seasonId": 46,
"showBrRank": true,
"showCsRank": true,
"showRank": true,
"weaponSkinShows": [907102308, 912049002]
},
"creditScoreInfo": {
"creditScore": 100,
"periodicSummaryEndTime": "1752594357",
"rewardState": "REWARD_STATE_UNCLAIMED"
},
"petInfo": {
"exp": 540,
"id": 1300000111,
"isSelected": true,
"level": 4,
"selectedSkillId": 1315000020,
"skinId": 1310000112
},
"socialinfo": {
"accountId": "2263549557",
"language": "Language_BENGALI",
"rankShow": "RankShow_BR",
"signature": "[b][c][FF1493]Love is Mahi[00FF00]Get 100 likes every day without any hassle.[87CEEB]Join our platform on:[1E90FF]1.Telegramโ[FFFFFF]NR_CODEX[FF0000]2.YouTubeโ[FFFFFF]NR_CODEX06[FF8C00]Here you get all types of tools for help!"
}
CREDIT: @Nilay_vii
WORKING ON ๐ฎ๐ณ IND | ๐ฎ๐ฉ ID | ๐ง๐ท BR | ๐ ME | ๐ป๐ณ VN | ๐น๐ญ TH | CIS | ๐ง๐ฉ BD | ๐ต๐ฐ PK | ๐ธ๐ฌ SG | ๐บ๐ธ NA | ๐ SAC | ๐ช๐บ EU | ๐น๐ผ TW ALMOST ALL REGIONNo matter what happens, Iโm always prepared โ I always have a backup plan โ .
INDIA SERVER ISSUE โ FIX
The IND API server now only allows requests from India (region-locked).Two working solutions i know:
1) If you're using Vercel: Update your
vercel.json to:
{
"builds": [
{ "src": "main.py", "use": "@vercel/python" }
],
"routes": [
{ "src": "/(.*)", "dest": "main.py" }
],
"regions": ["bom1"]
}
"bom1" = Mumbai (India region)
"main.py" = your main Python file
2) Use a VPS With either setup, the IND API should now work without errors.Questions? Feel free to ask in comment.
๐ GUILD GIVEAWAY ๐
INDIA SERVER GUILD ๐ฎ๐ณ
LEVEL :- 5
MEMBERS 50 UNLOCK ๐
GUILD NAME ๐
๏ผง๏ผฏ๏ผคโจ๏ผฌ๏ผฅ๏ผถ๏ผฅ๏ผฌเฟ
โโโโโโโโโโโโโโโโโโโ
๐ How to Participate
1๏ธโฃ Join: @nr_codex
2๏ธโฃ Join: NR CODEX BOTS โก
3๏ธโฃ Get votes from the community!
๐น Minimum 50 votes required to qualify
โโโโโโโโโโโโโโโโโโโ
โก Voting System
๐
Top 3 will qualify for the Final
๐ฅ Winners decided by community votes!
โโโโโโโโโโโโโโโโโโโ
โณ Timeline
๐
Entry Open: 11th July
๐ Winners Announced: 16th July
โโโโโโโโโโโโโโโโโโโ
๐ Enter Now
๐ DM: Nilay_vii
๐ Bonus Offers
๐ Most innovative bot will be featured in our channel!
โโโโโโโโโโโโโโโโโโโ
โ ๏ธ Rules (Strictly Follow)
๐ซ No fake votes
๐ซ No multi-accounting
โ
All entries will be manually verified
โโโโโโโโโโโโโโโโโโโ
๐ฅ Don't miss your chance to shine!
๐ฌ #GuildGiveaway #FreeFire #FFMAX #NRCodex
Need a powerful AI For Help and write codes ๐ Use this AI It's help you to write code with proper files and many more just try ๐ธ
๐ NEW FEATURES LIVE โ JWT GENERATOR BOT UPGRADED!
๐ Say hello to update jwt token generation! V2
๐ ๏ธ Weโve just added exclusive new features to JWT GENERATE BOT, including:
โ
Direct GitHub Token Upload
โค Instantly update your tokens to GitHub โ straight from Telegram! No extra tools or scripts needed.
โ
Speed Boost
โค Token generation is now blazing fast โ ultra-optimized with high concurrency.
โ
And add many more features go and check out ๐บ
๐ Secure GitHub Integration
โค Full remote control repo and update location. (With a warning prompt before uploading โ your token, your responsibility!)
๐ก And more powerful tools are on the way!
๐ Try it now: JWT GENERATE
๐ ๏ธ Update by NR CODEX Team
Stay tuned โ this is just the beginning. โก
And if any problem contact team NR CODEX BOTSโก.
Guy's Soโฆ you really want me to turn on the JWT Generator?
๐จ Official Announcement from NR CODEX
We have launched our new support bot: SUPPORT BOT ๐ค
@nr_codex_support_bot
From now on, if you have any issues, questions, need help, or want to make a purchase โ please contact and message this bot only.
This is the official support bot of NR CODEX.
โ ๏ธ Please do not DM me personally on:
โค @nilay_vii
โค @nilay_ok
Use the support bot for all communication going forward. Thank you for understanding ๐
Guys HOW TO MAKE FF TELEGRAM LIKE BOT | EASY WAY TO MAKE LIKE BOT ๐ฅ| FF LIKE BOT TUTORIAL Watch The Full Videos Carefully! โ
https://youtu.be/eAY_K7aRM0k
โข Code Credit goes to Madara
โข Bot Source Code: Click here
โข GitHub : Click here
โข Render : Click here
โข Uptime robot : Click here
Attention Please guy's ๐ข
My all bot Host on render but today render suspend my all bot hosting so wait for next update ๐
๐ฆ WELCOME TO HYPER xKEN WEBโ๏ธ
1. ๐ช BENEFITS โ No red page issues ๐ค
2. PRIVATE VIP THEMES โ Exclusive and stylish themes.
3. SUPERFAST LOADING SPEED โ Experience lightning-fast browsing.
4. NO DATA LEAK ๐๐ โ Your privacy is our priority.
5. REAL-TIME DATA ON BOT โ Get instant updates.
6. 24/7 CUSTOMER SUPPORT โ Always here to assist you.
๐ฐ PRICE: FREE โ Enjoy without any cost! ๐
๐ VIP PRICE: CURRENTLY FREE
๐ REGISTER NOW: https://ff-game-unreal.shop/register.php
๐ฌ ANY ISSUES? DM ME HERE: @MRAZAD0777
Channel: @hyper_free_apis
Web BOT: http://t.me/KEN_WEBS_BOT
๐ SUPPORT & SHARE GUYS! ๐ฆ
Endi mavjud! Telegram Tadqiqoti 2025 โ yilning asosiy insaytlari 
