unicum.gg

Player current clan

GET
/{region}/players/{nickname}/clan

The player's current clan (tag, name, color) from cached data only, with no live Wargaming call. Returns { clan: null } when the player is not in a clan or is not yet tracked. A lightweight companion to the full player detail, meant for compact UI such as nav bars.

Path Parameters

region*string

Game server region.

Value in

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

Player nickname.

Response Body

application/json

curl -X GET "https://example.com/eu/players/Animal/clan"
{  "clan": {    "tag": "string",    "name": "string",    "color": "string"  }}