Player Profiles
Fetch rich player state with a single GET: balances, current loadout, stats, and progression. The API is platform‑agnostic—use the same endpoint from Unreal, Unity, mobile, web, or your servers.
Fetch player profile
Request: GET https://yourcustomurl.com/player/profile?playerId=Player123
const r = await fetch("https://yourcustomurl.com/player/profile?playerId=Player123");
const profile = await r.json();
console.log(profile.vcBalance, profile.currentLoadout);