Free Fire Public Information API
v1.0 (Stable)Welcome to Walker's public API network for Garena Free Fire. This service enables developers to query player telemetry, status flags, JWT conversions, and profile bio signatures.
Core Host Endpoint Directory
"https://wzapiinfo.vercel.app"
"https://wzjwt.vercel.app"
"https://wzlongsign.vercel.app"
Retrieve detailed game attributes, active inventory equipment, rank thresholds, and clan metadata of the specified target.
Query Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
uid |
String | Yes | Numeric player UID. Example: 10597688191 |
region |
String | No | Target geographical cluster zone (e.g., SG, BR, IND). Defaults to automatic global routing. |
Request Example
curl -X GET "https://wzapiinfo.vercel.app/get?uid=10597688191"
Inspect whether the targeted player UID is currently blacklisted or flagged as suspended by Garena anti-cheat systems.
Query Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
uid |
String | Yes | Target numeric account UID. |
Request Example
curl -X GET "https://wzapiinfo.vercel.app/check_ban?uid=10597688191"
Convert active game client tokens, numeric credentials, or EAT URLs into standard JSON Web Token (JWT) payloads.
Query Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
mode |
String | Yes | Conversion method. Accepted configurations: access_token, id_pass, or eat_url. |
data |
String | Conditional | Raw Access Token or target authorization string. Required if utilizing access_token or eat_url modes. |
uid |
String | Conditional | Numeric credential account UID. Required when utilizing id_pass mode. |
password |
String | Conditional | Direct password string. Required when utilizing id_pass mode. |
Request Example
curl -X GET "https://wzjwt.vercel.app/api/process?mode=access_token&data=YOUR_ACCESS_TOKEN"
Programmatically rewrite the targeted account's in-game social signature profile text using active JWT authentication.
Query Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
JWT token |
String | Yes | Verified JWT authentication credential string. |
bio |
String | Yes | String body content for the updated profile bio (Max 256 characters limit). |
region |
String | No | Target zone (e.g., IND, BR, US, SAC, NA). Uses dynamic routing if omitted. |
Request Example
curl -X GET "https://wzlongsign.vercel.app/updatebio?token=YOUR_JWT_TOKEN&bio=Hello+World®ion=BR"
Error Schemas
Expected JSON structures returned when queries are missing required inputs or encounter parsing exceptions.
{
"status": "error",
"msg": "T_P_WRONG_ACCOUNT"
}