unicum.gg

Search clans

GET
/{region}/clans/search

Search clans by name or tag prefix (minimum 3 characters). Returns the combined result set in a single JSON response: our database hits first, then Wargaming API hits (deduped). Waits for the (rate-limited) Wargaming call, so it can be slower than the streamed variant. For progressive results, use /search/ndjson.

Path Parameters

region*string

Game server region.

Value in

  • "eu"
  • "na"
  • "asia"

Query Parameters

q*string

Search prefix.

Length3 <= length

Response Body

application/json

curl -X GET "https://example.com/eu/clans/search?q=uni"
{  "results": [    {      "clan_id": 0,      "tag": "string",      "name": "string",      "winrate": 0,      "badges": [        {          "board": "wn7",          "rank": 0        }      ]    }  ]}