𝗡𝗥 𝗖𝗢𝗗𝗘𝗫 𝗕𝗢𝗧𝗦 ⚡
Відкрити в Telegram
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
Показати більше1 046
Підписники
Немає даних24 години
-217 днів
-6430 день
Архів дописів
1 046
1 046
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_JENIL1 046
REGION 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_codex1 046
LIKE 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_771 046
🎂 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
1 046
Direct number to adhar card bot 😎
NUMBER_DETAILSFREE_BOT
Join for my link to get 2 point extra ❤️
#first time in tg 🌟
1 046
For any proxy server giveaway join this group
https://t.me/devproxychat
It will give you free proxy server giveaway and tips.
1 046
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 REGION1 046
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.
1 046
🏆 GUILD GIVEAWAY 🚀
INDIA SERVER GUILD 🇮🇳
LEVEL :- 5
MEMBERS 50 UNLOCK 🔓
GUILD NAME 📛
GOD♨LEVEL࿐
━━━━━━━━━━━━━━━━━━━
📌 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
1 046
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 😸
1 046
🚀 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⚡.
1 046
🚨 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 💝
1 046
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
1 046
Attention Please guy's 😢
My all bot Host on render but today render suspend my all bot hosting so wait for next update 😔
1 046
🦋 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! 🦋
Вже доступно! Дослідження Telegram за 2025 — головні інсайти року 
