WR Walker Regedits UTILITIES

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.

Rate Limiting: Standard public pathways are governed by a limit of 60 transactions per minute per origin IP address to ensure reliability.

Core Host Endpoint Directory

player info host
"https://wzapiinfo.vercel.app"
jwt converter host
"https://wzjwt.vercel.app"
signature update host
"https://wzlongsign.vercel.app"
GET /get

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

bash
curl -X GET "https://wzapiinfo.vercel.app/get?uid=10597688191"
GET /check_ban

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

bash
curl -X GET "https://wzapiinfo.vercel.app/check_ban?uid=10597688191"
GET /api/process

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

bash
curl -X GET "https://wzjwt.vercel.app/api/process?mode=access_token&data=YOUR_ACCESS_TOKEN"
GET /updatebio

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

bash
curl -X GET "https://wzlongsign.vercel.app/updatebio?token=YOUR_JWT_TOKEN&bio=Hello+World&region=BR"

Error Schemas

Expected JSON structures returned when queries are missing required inputs or encounter parsing exceptions.

json
{
                            "status": "error",
                            "msg": "T_P_WRONG_ACCOUNT"
                        }