Skip to content

BinaryWriter/WotAPI

Repository files navigation

WotAPI - C# library for getting data about World of Tanks

Release Repo Size Issues Pull Requests


Creating WotApi

  • Parameters
    • Token - Token for Wargaming Api. You can get it here - Wargaming Application.
    • Region - Wargaming Api Region. Available - RU, EU, NA, ASIA.
WotApi.Create(Token, Region);

Request execution

  • Generic
    • T - Response Class. A class must be inherited from ResponseClass and have an attribute ResponseAttribute. Such classes are listed below in the class table.
  • Parameters
    • Search - Object to search for. For example, the player ID. It is not necessary to specify.
    • Page - Page number. By default, the first one. It is not necessary to specify.
    • Parameters - Dictionary with additional parameters. It is not necessary to specify.
T Response = T.GetAll(Search, Page, Parameters);

Class table

Page on developers.wargaming.net Class in WotAPI
https://developers.wargaming.net/reference/all/wot/account/achievements/ WotAPI.Api.Accounts.Player.Achievements
https://developers.wargaming.net/reference/all/wot/account/info/ WotAPI.Api.Accounts.Player.Info
https://developers.wargaming.net/reference/all/wot/account/list/ WotAPI.Api.Accounts.Players
https://developers.wargaming.net/reference/all/wot/account/tanks/ WotAPI.Api.Accounts.Player.Vehicles
https://developers.wargaming.net/reference/all/wot/clans/accountinfo/ WotAPI.Api.Clans.Player.Info
https://developers.wargaming.net/reference/all/wot/clans/glossary/ WotAPI.Api.Clans.Clan.Glossary
https://developers.wargaming.net/reference/all/wot/clans/info/ WotAPI.Api.Clans.Clan.Info
https://developers.wargaming.net/reference/all/wot/clans/list/ WotAPI.Api.Clans.Clans
https://developers.wargaming.net/reference/all/wot/clans/memberhistory/ WotAPI.Api.Clans.Player.History
https://developers.wargaming.net/reference/all/wot/encyclopedia/achievements/ WotAPI.Api.Tankopedia.Achievements
https://developers.wargaming.net/reference/all/wot/encyclopedia/arenas/ WotAPI.Api.Tankopedia.Maps
https://developers.wargaming.net/reference/all/wot/encyclopedia/badges/ WotAPI.Api.Tankopedia.Badges
https://developers.wargaming.net/reference/all/wot/encyclopedia/boosters/ WotAPI.Api.Tankopedia.PersonalReserves
https://developers.wargaming.net/reference/all/wot/encyclopedia/crewroles/ WotAPI.Api.Tankopedia.Crew.Roles
https://developers.wargaming.net/reference/all/wot/encyclopedia/crewskills/ WotAPI.Api.Tankopedia.Crew.Skills
https://developers.wargaming.net/reference/all/wot/encyclopedia/info/ WotAPI.Api.Tankopedia.Info
https://developers.wargaming.net/reference/all/wot/encyclopedia/personalmissions/ WotAPI.Api.Tankopedia.PersonalMissions
https://developers.wargaming.net/reference/all/wot/encyclopedia/provisions/ WotAPI.Api.Tankopedia.Equipment
https://developers.wargaming.net/reference/all/wot/encyclopedia/vehicles/ WotAPI.Api.Tankopedia.Vehicle.Info
https://developers.wargaming.net/reference/all/wot/encyclopedia/vehicleprofile/ WotAPI.Api.Tankopedia.Vehicle.Profile
https://developers.wargaming.net/reference/all/wot/globalmap/claninfo/ WotAPI.Api.GlobalMap.Clan.Info
https://developers.wargaming.net/reference/all/wot/globalmap/fronts/ WotAPI.Api.GlobalMap.Fronts
https://developers.wargaming.net/reference/all/wot/globalmap/info/ WotAPI.Api.GlobalMap.Status
https://developers.wargaming.net/reference/all/wot/stronghold/claninfo/ WotAPI.Api.Strongholds.Clan.Info