Skip to content

Instantly share code, notes, and snippets.

@bartku
Created April 19, 2012 08:59
Show Gist options
  • Select an option

  • Save bartku/2419852 to your computer and use it in GitHub Desktop.

Select an option

Save bartku/2419852 to your computer and use it in GitHub Desktop.
world of tanks api
http://worldoftanks.eu/community/accounts/api/%API_VER%/?source_token=%TOKEN%&search=%NAME%&offset=0&limit=1
http://worldoftanks.eu/community/accounts/%PLAYER_ID%/api/%API_VER%/?source_token=%TOKEN%
http://worldoftanks.eu/community/clans/api/%API_VER%/?source_token=%TOKEN%&search=%CLAN_NAME%&offset=0&limit=1
http://worldoftanks.eu/community/clans/%CLAN_ID%/api/%API_VER%/?source_token=%TOKEN%
http://worldoftanks.eu/personal/api/%API_VER%/?source_token=%TOKEN%
http://worldoftanks.eu/uc/accounts/500662837/api/1.5/?source_token=Intellect_Soft-WoT_Mobile-unofficial_stats
login req: getlogin: https://worldoftanks.eu/auth/create/api/1.0/?source_token=%TOKEN%
gettoken: https://worldoftanks.eu/utils/csrf/api/1.0/?source_token=%TOKEN%
api versions: 1.0, 1.1, 1.2, 1.3
accounts search: 1.0, 1.1
accounts: 1.0, 1.1, 1.2, 1.3
clan search: 1.0
clans: 1.0, 1.1
personal: 1.0
tokens:
WG-WoT_Assistant-1.1.2
WG-WoT_Assistant-1.2.2
Intellect_Soft-WoT_Mobile-site
Intellect_Soft-WoT_Mobile
WG-WoT_Assistant-test
@roncsak
Copy link

roncsak commented Dec 23, 2012

gettoken won't works with Intellect_Soft-WoT_Mobile token and gives the following response:

{
  "status": "error", 
  "status_code": "API_WRONG_APPLICATION_ID", 
  "error_type": "api", 
  "error": "Неверный идентификатор приложения"
}

The translation of russian error text is "Invalid application ID".

@BONNe
Copy link

BONNe commented Jan 23, 2013

http://worldoftanks.eu/community/accounts/500445118/api/1.9/?source_token=WG-WoT_Assistant-test

  {
    "spotted": 0, 
    "localized_name": "PzKpfw VI Tiger", 
    "name": "PzVI", 
    "level": 7, 
    "damageDealt": 0, 
    "survivedBattles": 0, 
    "battle_count": 223, 
    "nation": "germany", 
    "image_url": "/static/2.1.3/encyclopedia/tankopedia/vehicle/small/germany-pzvi.png", 
    "frags": 0, 
    "win_count": 105, 
    "class": "heavyTank"
  },

In eu server this api isn't showing damage, spooted, frags and survived battle, but in all others are...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment