unicum.gg

Clan vehicles

GET
/{region}/clans/{tag}/vehicles

Per-tank stats for a clan, aggregated across all members from their most recent tank snapshots: member count, total battles, battle-weighted average damage and XP, win rate, and WN7/WN8/WNX ratings. This is the heavy aggregation on the clan page, so it lives on its own endpoint and is loaded on demand.

Path Parameters

region*string

Game server region.

Value in

  • "eu"
  • "na"
  • "asia"
tag*string

Clan tag.

Response Body

application/json

curl -X GET "https://example.com/eu/clans/FAME/vehicles"
{  "vehicles": [    {      "tankId": 0,      "name": "string",      "shortName": "string",      "tier": 0,      "nation": "string",      "type": "string",      "isPremium": true,      "role": "string",      "isReward": true,      "memberCount": 0,      "battles": 0,      "avgDamage": 0,      "avgXp": 0,      "winrate": 0,      "wn7": 0,      "wn8": 0,      "wnx": 0    }  ]}