unicum.gg

Clan overview

GET
/{region}/clans/{tag}

The clan's profile and its battle-weighted aggregate ratings (lifetime and 30-day WN7/WN8/WNX plus the average win rate). The heavy per-category data lives on the dedicated sub-endpoints: /members, /previous-clans, /activity, /stronghold, /clan-wars and /vehicles. 404 if the region's clan with this tag doesn't exist.

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"
{  "clan": {    "id": 0,    "tag": "string",    "name": "string",    "color": "string",    "emblem": "string",    "motto": "string",    "descriptionHtml": "string",    "createdAt": "2019-08-24T14:15:22Z",    "updatedAt": "2019-08-24T14:15:22Z",    "membersCount": 0,    "leaderId": 0,    "leaderName": "string",    "creatorId": 0,    "creatorName": "string",    "isDisbanded": true,    "languages": [      "string"    ]  },  "ratings": {    "lifetime": {      "wn7": 0,      "wn8": 0,      "wnx": 0    },    "recent": {      "wn7": 0,      "wn8": 0,      "wnx": 0    },    "avgWinrate": 0  },  "nameHistory": [    {      "tag": "string",      "name": "string",      "recordedAt": "2019-08-24T14:15:22Z"    }  ],  "vehiclesCount": 0,  "badges": [    {      "board": "wn7",      "rank": 0    }  ]}