unicum.gg

Player sessions

GET
/{region}/players/{nickname}/sessions

What a player played, session by session: battles, average tier, the vehicles taken out, and the per-battle averages and ratings of that stretch alone. The game keeps no session log and Wargaming exposes none, so each bucket is the difference between two consecutive snapshots of the player's vehicles, attributed to when it was observed. Bucketed by day, week or month; newest first. 404 when the player is unknown.

Path Parameters

region*string

Game server region.

Value in

  • "eu"
  • "na"
  • "asia"
nickname*string

Player nickname.

Query Parameters

granularity*string

Bucket size for the sessions.

Default"daily"

Value in

  • "daily"
  • "weekly"
  • "monthly"

Response Body

application/json

curl -X GET "https://example.com/eu/players/Animal/sessions?granularity=daily"
{  "granularity": "string",  "sessions": [    {      "period": "string",      "tanks": 0,      "avgTier": 0,      "vehicles": [        {          "tankId": 0,          "slug": "string",          "name": "string",          "shortName": "string",          "tier": 0,          "nation": "string",          "type": "string",          "isPremium": true,          "isReward": true,          "battles": 0,          "winrate": 0,          "avgDamage": 0,          "avgFrags": 0,          "avgSpotted": 0,          "avgDefense": 0,          "avgAssist": 0,          "avgXp": 0,          "survivalRate": 0,          "kd": 0,          "damageRatio": 0,          "wn7": 0,          "wn8": 0,          "wnx": 0        }      ],      "battles": 0,      "winrate": 0,      "avgDamage": 0,      "avgFrags": 0,      "avgSpotted": 0,      "avgDefense": 0,      "avgAssist": 0,      "avgXp": 0,      "survivalRate": 0,      "kd": 0,      "damageRatio": 0,      "wn7": 0,      "wn8": 0,      "wnx": 0    }  ]}