Search maps
Search the battle-map catalogue by name (minimum 3 characters), served from our in-memory catalogue. Returns the results in a single JSON response. For the streamed variant (a single local chunk), use /search/ndjson.
Path Parameters
Game server region.
Value in
- "eu"
- "na"
- "asia"
Query Parameters
Search prefix.
3 <= lengthResponse Body
application/json
curl -X GET "https://example.com/eu/maps/search?q=uni"{ "results": [ { "arena_id": "string", "slug": "string", "name": "string", "camouflage": "string", "minimap_url": "string" } ]}MCP endpoint POST
Model Context Protocol (MCP) server over a stateless Streamable HTTP transport. Point an MCP client at this URL to use unicum.gg's read API as MCP tools (the same player, clan and tank data as the REST endpoints). The POST body is a JSON-RPC 2.0 message (`initialize`, `tools/list`, `tools/call`, ...); the server replies with a JSON-RPC response or, when streaming, an SSE stream. `GET` opens the SSE stream and `DELETE` ends a session (transport-level, not documented separately).
Search maps (streamed) GET
Search the battle-map catalogue by name (minimum 3 characters). Streams NDJSON with a single `local` chunk served from our in-memory catalogue. For a plain JSON response, use `/search`.