# Point Blank Stalker — Zapi reference > Cek username akun Point Blank berdasarkan Player ID. FPS PC klasik dari Garena/Zepetto — populer di Indonesia sejak 2009. **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/point-blank - 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 --- ## Point Blank Stalker **Category:** games · **Slug:** `point-blank` **Detail page:** https://zpi.web.id/api/games/point-blank Cek username akun Point Blank berdasarkan Player ID. FPS PC klasik dari Garena/Zepetto — populer di Indonesia sejak 2009. **Tags:** games, pc, shooter, fps, garena ### Get User Profile Cek username akun Point Blank berdasarkan Player ID. FPS PC klasik dari Garena/Zepetto — populer di Indonesia sejak 2009. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/games:point-blank/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:point-blank/profile?gameId=zepidqa34" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/games:point-blank/profile?gameId=zepidqa34", { 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:point-blank/profile?gameId=zepidqa34", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "game": { "gameName": "Point Blank", "gameSlug": "point-blank", "zoneRequired": false, "isMaintenance": false, "isAlphaNumeric": true, "serverRequired": false, "maxLengthGameId": 25, "maxLengthZoneId": 0 }, "roles": [], "gameId": "zepidqa34", "gameType": "point-blank", "username": "zepidqa34", "verified": true, "scrapedAt": "2026-05-23T10:43:10.993Z" } ``` --- _Generated: 2026-08-02T14:24:18.264Z_