TSun BanCheck Console
Fast bancheck dashboard
๐Ÿ”ฅ
FreeFire BanCheck API

Quick status lookup with live reference tools

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 -
Speed Quick results

Built for fast lookups with minimal friction.

Motion Smooth entry

Gentle transitions keep the interface feeling alive.

Reference Close at hand

Examples and endpoint details sit beside the checker.

Reference

API guide

Find endpoint details, sample data, and a working request example in one place.

Overview

Player lookup API

Fetches Free Fire player data, ban status, and last-login details from the Flask backend.

Highlights
  • Player information and region
  • Real-time ban status
  • Last login formatting
  • Minimal dependency footprint
Install
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 
Endpoint
GET /bancheck?uid=111111111
Parameters
uidRequired

Numeric player UID.

Live sample
JSON response will appear here.
Sample response
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"
}
Example
python
import requests

uid = "111111111"
response = requests.get(f"https://bancheck.tsunstudio.pw/bancheck?uid={uid}")
data = response.json()

print(f"Player: {data['nickname']}")