# Free Fire Stalker — Zapi reference > Cek username akun Free Fire berdasarkan Player ID. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/games/free-fire - Endpoint catalog: https://zpi.web.id/category/games - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Free Fire Stalker **Category:** games · **Slug:** `free-fire` **Detail page:** https://zpi.web.id/api/games/free-fire Cek username akun Free Fire berdasarkan Player ID. **Tags:** games ### Get User Profile Cek username akun Free Fire berdasarkan Player ID. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/games:free-fire/profile` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `gameId` | string | query | yes | ID akun dalam game | **cURL:** ```bash curl "https://api.zpi.web.id/v1/games:free-fire/profile?gameId=902991369" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/games:free-fire/profile?gameId=902991369", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/games:free-fire/profile?gameId=902991369", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "game": { "gameName": "Free Fire (FF)", "gameSlug": "freefire", "zoneRequired": false, "isMaintenance": false, "isAlphaNumeric": false, "serverRequired": false, "maxLengthGameId": 25, "maxLengthZoneId": 0 }, "roles": [], "gameId": "902991369", "gameType": "free-fire", "username": "ᏢᎬᎷᏴUᎡUㅤGM々", "verified": true, "scrapedAt": "2026-05-23T10:09:02.404Z" } ``` --- _Generated: 2026-08-02T14:25:26.382Z_