Clans[Search clans GET](/docs/clans/get-region-clans-search.md)

# Search clans

Server URL`loading...`

GET

/`{region}`/`clans`/`search`

Send

Path

region\*`string`eu

Query

q\*`string`

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](#parameters-path)

region\*string

Game server region.

Value in

-   "eu"
-   "na"
-   "asia"

## [Query Parameters](#parameters-query)

q\*string

Search prefix.

Length`3 <= length`

## [Response Body](#response-body)

### 200

`application/json`

cURL

JavaScript

Go

Python

Java

C#

Rust

```
curl -X GET "https://example.com/eu/clans/search?q=uni"
```

200

```
{  "results": [    {      "clan_id": 0,      "tag": "string",      "name": "string",      "winrate": 0,      "badges": [        {          "board": "wn7",          "rank": 0        }      ]    }  ]}
```

[

Player live stream GET

Server-sent events (SSE) for live player profile updates.

](/docs/players/get-region-players-nickname-sse.md)[

Search clans (streamed) GET

Search clans by name or tag prefix (minimum 3 characters). Streams NDJSON (one JSON object per line): a \`local\` chunk from our database first (instant), then a \`remote\` chunk from the Wargaming API (deduped against local) as it arrives. For a single combined JSON response, use \`/search\`.

](/docs/clans/get-region-clans-search-ndjson.md)

## Navigation

- [unicum.gg](/index.md)

## Indexes

- [llms.txt](/llms.txt): the API, the MCP server and the other machine-readable surfaces.
- [llms-full.txt](/llms-full.txt): the same, with every endpoint's parameters inline.
- [sitemap.md](/sitemap.md): every section of the site, down to the individual pages.