⚡ Real-Time · No Cache · Free Fire Player API

FREE FIREPLAYER INFO API

Instantly fetch any Free Fire player's full profile — stats, cosmetics, clan, pet, credit score and CDN images — pulled live from Garena servers on every request.

📖 View Docs 🔍 Try Live API
GET
16+Regions
30+Fields
100%Real-Time
0msCache TTL
v4.0Version
API Endpoint

Base URL & Request Format

Send a GET request with three query parameters. The base URL is auto-detected from the current site.

GETapi.php — Player Infov4.0.0Real-Time
Request URL
Live Example
Response
application/json
Cache
no-store, no-cache
CORS
Access-Control: *
Timeout
20 seconds
Parameters

Query Parameters

All three parameters are required and passed as URL query strings.

ParameterTypeRequiredDescription
uidintegerrequired Player's Free Fire numeric UID — 5 to 12 digits. Found on the in-game profile page.
regionstringrequired Server region code (uppercase). Must match the player's registered server. See the region list below.
passstringrequired Private access key for authentication. Contact the developer via Telegram to obtain yours.
Validation Error Examples
// Missing uid
{ "error": { "code": "MISSING_UID", "message": "Parameter 'uid' is required." } }

// Wrong region
{ "error": { "code": "INVALID_REGION", "message": "Region 'XYZ' is not supported." } }
Regions

Supported Server Regions

Use the exact region code shown. The API normalises case automatically.

BDBangladesh
INDIndia
SGSingapore
IDIndonesia
THThailand
VNVietnam
PKPakistan
MEMiddle East
BRBrazil
USNorth America
NANA Server
TWTaiwan
RURussia
CISCIS
SACSouth America
EUROPEEurope
Response

Response Structure

Every success returns a JSON envelope with 8 data sections and no duplicated fields.

JSON — Success Envelope
{
  "status":      "success",
  "api_version": "4.0.0",
  "realtime":    true,
  "cached":      false,
  "timestamp":   "2025-05-03T12:00:00Z",
  "data": {
    "basicInfo",       // Identity, rank, badges, highlights
    "profileInfo",     // Avatar, outfit, equipped skills
    "socialInfo",      // Gender, language, bio, mode preference
    "clanBasicInfo",   // Clan name, level, captain, members
    "petInfo",         // Pet name, level, EXP, active skill
    "creditScoreInfo", // Credit score, reward state
    "diamondCostRes",  // Total diamonds spent
    "cdnUrls"          // CDN PNG image links for all items
  }
}
👤
basicInfo
Identity & rank
  • accountIdstring
  • nicknamestring
  • levelinteger
  • regionstring
  • likedinteger
  • rank / csRankinteger
  • createAtDD Mon YYYY
  • lastLoginAtDD Mon YYYY
🎨
profileInfo
Appearance & loadout
  • avatarIdinteger
  • clothesinteger[]
  • equipedSkillsobject[]
  • isSelectedboolean
  • isMarkedStarboolean
  • isSelectedAwakenboolean
  • skinColorinteger
💬
socialInfo
Player preferences
  • genderenum
  • languageenum
  • modePreferenum
  • rankShowenum
  • signaturestring
🏰
clanBasicInfo
Clan details
  • clanId / clanNamestring
  • clanLevelinteger
  • captainIdstring
  • memberNuminteger
  • capacityinteger
🐾
petInfo
Companion pet
  • id / nameint/string
  • level / expinteger
  • isSelectedboolean
  • skinIdinteger
  • selectedSkillIdinteger
🖼️
cdnUrls
Image asset links
  • avatarURL
  • bannerURL
  • equippedURL[]
  • weaponSkinsURL[]
  • slotsURL[]
Errors

Error Codes

All errors return a JSON body with "status":"error" and an error object.

Error Response Shape
{
  "status":      "error",
  "api_version": "4.0.0",
  "error": {
    "code":    "PLAYER_NOT_FOUND",
    "message": "Player UID 999 not found in region BD."
  }
}
HTTPError CodeCause
401UNAUTHORIZEDInvalid or missing access key
400MISSING_UIDuid parameter not provided
400MISSING_REGIONregion parameter not provided
400INVALID_UIDUID is not a 5–12 digit number
400INVALID_REGIONRegion code not in the supported list
404PLAYER_NOT_FOUNDNo player found for that UID in the given region
500INTERNAL_ERRORUpstream Garena API error or network timeout
✈️

Join the Community

Get your access key, ask questions, report issues, and stay updated with the latest API changes on our Telegram channel.

Open Telegram Channel
t.me/nxt_coder
🔑 Get Access Key 🆕 API Updates 🛠️ Support