Player Info API
The Player Info API retrieves real-time, authenticated statistics for Free Fire accounts from active game servers.
Basic Usage
To fetch a basic profile, query `/api/v1/player/basic` with the target player's `uid`.
GET/api/v1/player/basic
Cost: 0.50 (basic) | 2.50 (detailed) | 5.00 (full) Credits per request
Advanced Guide
Control the density of your response with the `detail` parameter:
basic
Returns high-level profile statistics: `uid`, `nickname`, `level`, `likes`, `region`.
detailed
Adds equipping titles, badges, career experience progress, custom avatars, and banner parameters.
full
Returns full protocol buffers dump including active guild affiliations, history rankings, and equipment configurations.
Code Examples
python
import requests
url = "https://ffdata-api.onrender.com/api/v1/player/basic"
headers = {
"Authorization": "Bearer YOUR_API_KEY"
}
params = {
"uid": 1738283841,
"region": "ind",
"detail": "detailed"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())())API Details
| Parameter | Type | Required | Description |
|---|---|---|---|
| uid | integer | Yes | Free Fire account UID (6-14 digits) |
| region | string | No | Server region code. Default is `ind` (India). |
| detail | string | No | Response depth filter. One of `basic`, `detailed`, `full` |
Response Structure
json
{
"success": true,
"data": {
"uid": 1738283841,
"nickname": "ˢᵗᵃʳ★ᴊᴀᴄᴋ࿐",
"level": 74,
"likes": 28419,
"region": "IND",
"exp": 12903482,
"title_id": 10294,
"avatar_id": 50012,
"banner_id": 80034,
"rank_points": 3410,
"cs_points": 82
},
"meta": {
"time_ms": 142,
"request_id": "8f3e2a1b-9c4d-4e5f-a6b7-c8d9e0f1a2b3"
}
}
}
}