Built for fast lookups with minimal friction.
Free Fire moderation toolkit
Track player status with a focused, polished dashboard.
Check ban state, inspect player details, and keep the reference material close while you work.
Session
Active
Speed
Responsive
Focus
Clean
Control
Simple
Quick lookup
Ban Check
Enter a UID to retrieve nickname, region, level, status, and last login.
Nickname
-
Region
-
Level
-
Status
-
Last Login
-
Gentle transitions keep the interface feeling alive.
Examples and endpoint details sit beside the checker.
Reference
API guide
Find endpoint details, sample data, and a working request example in one place.
Player lookup API
Fetches Free Fire player data, ban status, and last-login details from the Flask backend.
- Player information and region
- Real-time ban status
- Last login formatting
- Minimal dependency footprint
bash
git clone https://github.com/TSun-FreeFire/TSun-FF-Bancheck.git
cd TSun-FF-Bancheck
pip install -r requirements.txt
python app.py
This Repo Is Private For Purchase Src Contact
On instagram,Telegram: @saeedxdie
GET
/bancheck?uid=111111111
uidRequired
Numeric player UID.
JSON response will appear here.
json
{
"nickname": "TSun x Kittens",
"uid": "111111111",
"AccountLevel": 100,
"region": "PK",
"AccountLastLogin": "2026-05-05",
"status": "OK",
"is_banned": false,
"Last_Login": "0 Year 2 Months And 7 Days Ago",
"credits": "TSun Studio"
}
python
import requests
uid = "111111111"
response = requests.get(f"https://bancheck.tsunstudio.pw/bancheck?uid={uid}")
data = response.json()
print(f"Player: {data['nickname']}")