# Arena of Valor Stalker — Zapi reference > Cek username akun Arena of Valor 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/aov - 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 --- ## Arena of Valor Stalker **Category:** games · **Slug:** `aov` **Detail page:** https://zpi.web.id/api/games/aov Cek username akun Arena of Valor berdasarkan Player ID. **Tags:** games, moba, aov ### Get User Profile - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/games:aov/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:aov/profile?gameId=2748846783202461" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/games:aov/profile?gameId=2748846783202461", { 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:aov/profile?gameId=2748846783202461", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "game": { "gameName": "AoV", "gameSlug": "aov", "zoneRequired": false, "isMaintenance": false, "isAlphaNumeric": false, "serverRequired": false, "maxLengthGameId": 25, "maxLengthZoneId": 0 }, "roles": [], "gameId": "2748846783202461", "gameType": "arena-of-valor", "username": "PPMMFire", "verified": true, "scrapedAt": "2026-05-23T10:09:58.996Z" } ``` --- _Generated: 2026-08-02T14:23:46.885Z_