WG Element
Wargaming.net Public API is a set of API methods that provide access to Wargaming.net content, including in-game and game-related content, as well as player statistics.
World of Tanks Wargaming.net Public API

Player Data
Player data of the game (WoT).
about API
Wargaming.net Public API (API Reader); Wargaming.net Public API
Important know
- The API always returns data in JSON format.
- The request per second limit is set for each application_id.
REQUEST FORMAT
A user communicates with a domain/subdomain, which represents the game cluster, via HTTP(S) and API returns values.
The part of domain name indicating a cluster is denoted as
<server>
.
Two HTTP(S) methods to transfer the parameters:
-
GET:
methods:
specified in the URL request.
Example:?<param_name>=<param_value>
-
POST:
methods:
specified in HTTP request.
Example:?<param_name>=<param_value>
The format of all URL requests:
http(s)://<server>/<API_name>/<method block>/<method name>/?<get params>
Where:
-
<server> — URI for a game server on the corresponding cluster
-
<API_name> — API version
-
<method block> — name of the method group
-
<method name> — method name
-
<get params> — params, optional parameters (application id, ... n)
All text parameters should be transferred in UTF-8 encoding. Read more .