unicum.gg

Maps

GET
/{region}/maps

Every World of Tanks battle map on a region: display name, minimap image, camouflage kind (summer/winter/desert), square size in metres, and the random-battle modes it supports (Standard/Encounter/Assault). Derived from the game client scripts, so removed or event-reskin maps are included. One entry per distinct map, name-sorted.

Path Parameters

region*string

Game server region.

Value in

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

Response Body

application/json

curl -X GET "https://example.com/eu/maps"
{  "results": [    {      "arenaId": "string",      "slug": "string",      "name": "string",      "camouflage": "summer",      "sizeMeters": 0,      "modes": [        "standard"      ],      "battleTypes": [        "random"      ],      "minimapUrl": "string",      "bases": {        "team1": [          {            "left": 0,            "top": 0          }        ],        "team2": [          {            "left": 0,            "top": 0          }        ]      }    }  ]}