diff --git a/.gitignore b/.gitignore index 2f073cd..d3b9839 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .oauthtoken +*.csv diff --git a/account-json.sh b/account-json.sh new file mode 100644 index 0000000..0a03dca --- /dev/null +++ b/account-json.sh @@ -0,0 +1,4 @@ +token="$(cat .oauthtoken)" +curl -H "Authorization: Bearer $token" "https://us.api.blizzard.com/profile/user/wow?namespace=profile-us&locale=en_US" > ./output/account.json +# output_json=$(curl -H "Authorization: Bearer $token" "https://us.api.blizzard.com/profile/user/wow?namespace=profile-us&locale=en_US") +#jq -r '.wow_accounts[0].characters[] | [.name, .level] | @csv' diff --git a/oauth-token.py b/get-token.py similarity index 100% rename from oauth-token.py rename to get-token.py diff --git a/oauth-curlsp.py b/oauth-curlsp.py deleted file mode 100644 index 74372a2..0000000 --- a/oauth-curlsp.py +++ /dev/null @@ -1,38 +0,0 @@ -import http.server -from oauthlib.oauth2 import WebApplicationClient -import webbrowser -import re -import subprocess -import ast - - -token_file = open(".oauthtoken", "r") -oauth_token = token_file.readline() - -def oauth_api_curl(url): - command = ["curl", "-sH", "Authorization: Bearer {}".format(oauth_token), "https://us.api.blizzard.com/profile/user/wow?namespace=profile-us&locale=en_US"] - result = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - -# Get the output and error message (if any) -output = result.stdout -output_dict = ast.literal_eval(output) -error = result.stderr - -characters = output_dict['wow_accounts'][0]['characters'] -char_dicts = [] -# Check if it was successful -if result.returncode == 0: - print("Success:") - for char in characters: - # TODO: API call for char['protected_character'] url via curl for more info - char_dict = {'id': char['id'], - 'name': char['name'], - 'level': char['level'], - 'realm': char['realm']['name'], - 'class': char['playable_class']['name']} - char_dicts.append(char_dict) - print(char_dict) - print(char) -else: - print("Error:") - print(error) diff --git a/output/account.json b/output/account.json new file mode 100644 index 0000000..4ba336a --- /dev/null +++ b/output/account.json @@ -0,0 +1 @@ +{"_links":{"self":{"href":"https://us.api.blizzard.com/profile/user/wow?namespace=profile-us"},"user":{"href":"https://us.api.blizzard.com/profile/user"},"profile":{"href":"https://us.api.blizzard.com/profile/user/wow?namespace=profile-us"}},"id":51037191,"wow_accounts":[{"id":20470168,"characters":[{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/kaelthas/qaalya?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1069-259810677?namespace=profile-us"},"name":"Qaalya","id":259810677,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1069?namespace=dynamic-us"},"name":"Kael'thas","id":1069,"slug":"kaelthas"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/8?namespace=static-11.0.7_57788-us"},"name":"Mage","id":8},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/35?namespace=static-11.0.7_57788-us"},"name":"Vulpera","id":35},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":33},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/balnazzar/violaceous?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1075-258721035?namespace=profile-us"},"name":"Violaceous","id":258721035,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1075?namespace=dynamic-us"},"name":"Balnazzar","id":1075,"slug":"balnazzar"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":10},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/zydira?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237167612?namespace=profile-us"},"name":"Zydira","id":237167612,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/12?namespace=static-11.0.7_57788-us"},"name":"Demon Hunter","id":12},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":71},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/valkyyn?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237167634?namespace=profile-us"},"name":"Valkyyn","id":237167634,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":34},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/dyrant?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237169750?namespace=profile-us"},"name":"Dyrant","id":237169750,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/9?namespace=static-11.0.7_57788-us"},"name":"Warlock","id":9},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/5?namespace=static-11.0.7_57788-us"},"name":"Undead","id":5},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":32},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/phayt?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237183415?namespace=profile-us"},"name":"Phayt","id":237183415,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/6?namespace=static-11.0.7_57788-us"},"name":"Death Knight","id":6},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/35?namespace=static-11.0.7_57788-us"},"name":"Vulpera","id":35},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":77},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/kytrra?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237188869?namespace=profile-us"},"name":"Kytrra","id":237188869,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/8?namespace=static-11.0.7_57788-us"},"name":"Mage","id":8},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":78},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/shaayd?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237282917?namespace=profile-us"},"name":"Shaayd","id":237282917,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/3?namespace=static-11.0.7_57788-us"},"name":"Hunter","id":3},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/35?namespace=static-11.0.7_57788-us"},"name":"Vulpera","id":35},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":78},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/elzzid?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237284207?namespace=profile-us"},"name":"Elzzid","id":237284207,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/28?namespace=static-11.0.7_57788-us"},"name":"Highmountain Tauren","id":28},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":34},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/aislyn?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237285907?namespace=profile-us"},"name":"Aislyn","id":237285907,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/13?namespace=static-11.0.7_57788-us"},"name":"Evoker","id":13},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/70?namespace=static-11.0.7_57788-us"},"name":"Dracthyr","id":70},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":77},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/yrika?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237306214?namespace=profile-us"},"name":"Yrika","id":237306214,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/7?namespace=static-11.0.7_57788-us"},"name":"Shaman","id":7},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/35?namespace=static-11.0.7_57788-us"},"name":"Vulpera","id":35},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":43},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/flynnian?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-237366420?namespace=profile-us"},"name":"Flynnian","id":237366420,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/35?namespace=static-11.0.7_57788-us"},"name":"Vulpera","id":35},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":78},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/xylinia?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-238070930?namespace=profile-us"},"name":"Xylinia","id":238070930,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/11?namespace=static-11.0.7_57788-us"},"name":"Druid","id":11},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/8?namespace=static-11.0.7_57788-us"},"name":"Troll","id":8},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":77},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/mackynna?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-239071229?namespace=profile-us"},"name":"Mackynna","id":239071229,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/9?namespace=static-11.0.7_57788-us"},"name":"Warlock","id":9},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":69},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/nyysa?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-241474390?namespace=profile-us"},"name":"Nyysa","id":241474390,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/35?namespace=static-11.0.7_57788-us"},"name":"Vulpera","id":35},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":40},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/solymn?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242112715?namespace=profile-us"},"name":"Solymn","id":242112715,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/6?namespace=static-11.0.7_57788-us"},"name":"Tauren","id":6},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/nephyni?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242387872?namespace=profile-us"},"name":"Nephyni","id":242387872,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/vyalacia?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242837350?namespace=profile-us"},"name":"Vyalacia","id":242837350,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/11?namespace=static-11.0.7_57788-us"},"name":"Draenei","id":11},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/seamutt?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242909319?namespace=profile-us"},"name":"Seamutt","id":242909319,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/22?namespace=static-11.0.7_57788-us"},"name":"Worgen","id":22},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":78},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/lyliaa?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-243062445?namespace=profile-us"},"name":"Lyliaa","id":243062445,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/10?namespace=static-11.0.7_57788-us"},"name":"Monk","id":10},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/belawyn?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-243081773?namespace=profile-us"},"name":"Belawyn","id":243081773,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/3?namespace=static-11.0.7_57788-us"},"name":"Hunter","id":3},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/30?namespace=static-11.0.7_57788-us"},"name":"Lightforged Draenei","id":30},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/izyrra?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-243081865?namespace=profile-us"},"name":"Izyrra","id":243081865,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/12?namespace=static-11.0.7_57788-us"},"name":"Demon Hunter","id":12},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/oryssa?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-243192196?namespace=profile-us"},"name":"Oryssa","id":243192196,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/6?namespace=static-11.0.7_57788-us"},"name":"Death Knight","id":6},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/wynelle?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-243205831?namespace=profile-us"},"name":"Wynelle","id":243205831,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/11?namespace=static-11.0.7_57788-us"},"name":"Druid","id":11},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/kelthuzad/aerydah?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/16-243514713?namespace=profile-us"},"name":"Aerydah","id":243514713,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/16?namespace=dynamic-us"},"name":"Kel'Thuzad","id":16,"slug":"kelthuzad"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/earthen-ring/gemaa?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/100-245041888?namespace=profile-us"},"name":"Gemaa","id":245041888,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/100?namespace=dynamic-us"},"name":"Earthen Ring","id":100,"slug":"earthen-ring"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/7?namespace=static-11.0.7_57788-us"},"name":"Shaman","id":7},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/85?namespace=static-11.0.7_57788-us"},"name":"Earthen","id":85},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/icecrown/qaalya?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/14-243513468?namespace=profile-us"},"name":"Qaalya","id":243513468,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/14?namespace=dynamic-us"},"name":"Icecrown","id":14,"slug":"icecrown"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/8?namespace=static-11.0.7_57788-us"},"name":"Mage","id":8},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":70},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/monszid?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-167784517?namespace=profile-us"},"name":"Monszid","id":167784517,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/10?namespace=static-11.0.7_57788-us"},"name":"Monk","id":10},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/7?namespace=static-11.0.7_57788-us"},"name":"Gnome","id":7},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/xylinia?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-167784566?namespace=profile-us"},"name":"Xylinia","id":167784566,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/11?namespace=static-11.0.7_57788-us"},"name":"Druid","id":11},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/phayt?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-167811904?namespace=profile-us"},"name":"Phayt","id":167811904,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/6?namespace=static-11.0.7_57788-us"},"name":"Death Knight","id":6},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/11?namespace=static-11.0.7_57788-us"},"name":"Draenei","id":11},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":69},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/crosys?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-167872744?namespace=profile-us"},"name":"Crosys","id":167872744,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/9?namespace=static-11.0.7_57788-us"},"name":"Warlock","id":9},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/7?namespace=static-11.0.7_57788-us"},"name":"Gnome","id":7},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/warzzyd?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-167872793?namespace=profile-us"},"name":"Warzzyd","id":167872793,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/1?namespace=static-11.0.7_57788-us"},"name":"Human","id":1},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":78},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/zakiyah?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-167873373?namespace=profile-us"},"name":"Zakiyah","id":167873373,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/7?namespace=static-11.0.7_57788-us"},"name":"Shaman","id":7},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/11?namespace=static-11.0.7_57788-us"},"name":"Draenei","id":11},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/aegys?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-168133070?namespace=profile-us"},"name":"Aegys","id":168133070,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/3?namespace=static-11.0.7_57788-us"},"name":"Dwarf","id":3},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/elzzid?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-168533271?namespace=profile-us"},"name":"Elzzid","id":168533271,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/22?namespace=static-11.0.7_57788-us"},"name":"Worgen","id":22},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/schayd?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-170023870?namespace=profile-us"},"name":"Schayd","id":170023870,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/3?namespace=static-11.0.7_57788-us"},"name":"Hunter","id":3},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/1?namespace=static-11.0.7_57788-us"},"name":"Human","id":1},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/taerys?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-170026396?namespace=profile-us"},"name":"Taerys","id":170026396,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/8?namespace=static-11.0.7_57788-us"},"name":"Mage","id":8},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/1?namespace=static-11.0.7_57788-us"},"name":"Human","id":1},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/lazzyd?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-174756565?namespace=profile-us"},"name":"Lazzyd","id":174756565,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/12?namespace=static-11.0.7_57788-us"},"name":"Demon Hunter","id":12},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":77},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/tuynan?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-185692444?namespace=profile-us"},"name":"Tuynan","id":185692444,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/dyranth?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-239031062?namespace=profile-us"},"name":"Dyranth","id":239031062,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/13?namespace=static-11.0.7_57788-us"},"name":"Evoker","id":13},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/52?namespace=static-11.0.7_57788-us"},"name":"Dracthyr","id":52},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":80},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/derant?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142036609?namespace=profile-us"},"name":"Derant","id":142036609,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/draconi%C3%A5?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142041716?namespace=profile-us"},"name":"Draconiå","id":142041716,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/9?namespace=static-11.0.7_57788-us"},"name":"Warlock","id":9},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/1?namespace=static-11.0.7_57788-us"},"name":"Human","id":1},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":31},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/hotstacks?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142071289?namespace=profile-us"},"name":"Hotstacks","id":142071289,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/11?namespace=static-11.0.7_57788-us"},"name":"Druid","id":11},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":52},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/shmurfturf?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142208887?namespace=profile-us"},"name":"Shmurfturf","id":142208887,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/7?namespace=static-11.0.7_57788-us"},"name":"Shaman","id":7},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/11?namespace=static-11.0.7_57788-us"},"name":"Draenei","id":11},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/annor?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142247953?namespace=profile-us"},"name":"Annor","id":142247953,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/8?namespace=static-11.0.7_57788-us"},"name":"Mage","id":8},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/1?namespace=static-11.0.7_57788-us"},"name":"Human","id":1},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":77},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/vindifeso?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142367089?namespace=profile-us"},"name":"Vindifeso","id":142367089,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/3?namespace=static-11.0.7_57788-us"},"name":"Dwarf","id":3},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/elzzid?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142404070?namespace=profile-us"},"name":"Elzzid","id":142404070,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/7?namespace=static-11.0.7_57788-us"},"name":"Gnome","id":7},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/midgnight?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142514936?namespace=profile-us"},"name":"Midgnight","id":142514936,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/6?namespace=static-11.0.7_57788-us"},"name":"Death Knight","id":6},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/7?namespace=static-11.0.7_57788-us"},"name":"Gnome","id":7},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/schayd?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-143319721?namespace=profile-us"},"name":"Schayd","id":143319721,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/3?namespace=static-11.0.7_57788-us"},"name":"Hunter","id":3},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":77},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/qadyra?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-90121282?namespace=profile-us"},"name":"Qadyra","id":90121282,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/9?namespace=static-11.0.7_57788-us"},"name":"Warlock","id":9},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":77},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/zakiyah?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-90252172?namespace=profile-us"},"name":"Zakiyah","id":90252172,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/6?namespace=static-11.0.7_57788-us"},"name":"Death Knight","id":6},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/xylinia?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-90297479?namespace=profile-us"},"name":"Xylinia","id":90297479,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/derante?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-90494559?namespace=profile-us"},"name":"Derante","id":90494559,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/11?namespace=static-11.0.7_57788-us"},"name":"Druid","id":11},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/6?namespace=static-11.0.7_57788-us"},"name":"Tauren","id":6},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/vindifesa?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-90799186?namespace=profile-us"},"name":"Vindifesa","id":90799186,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":78},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/valkys?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-90849903?namespace=profile-us"},"name":"Valkys","id":90849903,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/tarazed?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-93538014?namespace=profile-us"},"name":"Tarazed","id":93538014,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/2?namespace=static-11.0.7_57788-us"},"name":"Orc","id":2},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/ynaught?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-95193007?namespace=profile-us"},"name":"Ynaught","id":95193007,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/7?namespace=static-11.0.7_57788-us"},"name":"Shaman","id":7},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/2?namespace=static-11.0.7_57788-us"},"name":"Orc","id":2},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/f%C3%A5lcone?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-96181155?namespace=profile-us"},"name":"Fålcone","id":96181155,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":48},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/elzzid?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-97863674?namespace=profile-us"},"name":"Elzzid","id":97863674,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/10?namespace=static-11.0.7_57788-us"},"name":"Monk","id":10},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/5?namespace=static-11.0.7_57788-us"},"name":"Undead","id":5},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":50},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/stormreaver/juleus?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/58-232297407?namespace=profile-us"},"name":"Juleus","id":232297407,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/58?namespace=dynamic-us"},"name":"Stormreaver","id":58,"slug":"stormreaver"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/85?namespace=static-11.0.7_57788-us"},"name":"Earthen","id":85},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":45},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/alexstrasza/lyssora?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1070-232939179?namespace=profile-us"},"name":"Lyssora","id":232939179,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1070?namespace=dynamic-us"},"name":"Alexstrasza","id":1070,"slug":"alexstrasza"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/52?namespace=static-11.0.7_57788-us"},"name":"Dracthyr","id":52},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":34},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/kirin-tor/gemaa?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1071-233148210?namespace=profile-us"},"name":"Gemaa","id":233148210,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1071?namespace=dynamic-us"},"name":"Kirin Tor","id":1071,"slug":"kirin-tor"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/85?namespace=static-11.0.7_57788-us"},"name":"Earthen","id":85},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":10},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/thrall/tauzzid?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1263-153674972?namespace=profile-us"},"name":"Tauzzid","id":153674972,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1263?namespace=dynamic-us"},"name":"Thrall","id":1263,"slug":"thrall"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/6?namespace=static-11.0.7_57788-us"},"name":"Tauren","id":6},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":49},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/thrall/frozzid?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1263-155703584?namespace=profile-us"},"name":"Frozzid","id":155703584,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1263?namespace=dynamic-us"},"name":"Thrall","id":1263,"slug":"thrall"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/6?namespace=static-11.0.7_57788-us"},"name":"Death Knight","id":6},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/5?namespace=static-11.0.7_57788-us"},"name":"Undead","id":5},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":44},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/lethon/eirrys?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1295-200558404?namespace=profile-us"},"name":"Eirrys","id":200558404,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1295?namespace=dynamic-us"},"name":"Lethon","id":1295,"slug":"lethon"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":24}]},{"id":4993286,"characters":[{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/ysera/tuynan?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1270-259323766?namespace=profile-us"},"name":"Tuynan","id":259323766,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1270?namespace=dynamic-us"},"name":"Ysera","id":1270,"slug":"ysera"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/25?namespace=static-11.0.7_57788-us"},"name":"Pandaren","id":25},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/pawsketti?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-241746385?namespace=profile-us"},"name":"Pawsketti","id":241746385,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/8?namespace=static-11.0.7_57788-us"},"name":"Mage","id":8},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/35?namespace=static-11.0.7_57788-us"},"name":"Vulpera","id":35},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":10},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/yuas?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242845021?namespace=profile-us"},"name":"Yuas","id":242845021,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":11},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/lyuas?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242845385?namespace=profile-us"},"name":"Lyuas","id":242845385,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/30?namespace=static-11.0.7_57788-us"},"name":"Lightforged Draenei","id":30},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":20},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/schaeyd?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242851548?namespace=profile-us"},"name":"Schaeyd","id":242851548,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/3?namespace=static-11.0.7_57788-us"},"name":"Hunter","id":3},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":11},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/luasa?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242858837?namespace=profile-us"},"name":"Luasa","id":242858837,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":20},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/luashe?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242858889?namespace=profile-us"},"name":"Luashe","id":242858889,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/27?namespace=static-11.0.7_57788-us"},"name":"Nightborne","id":27},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":20},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/nashir%C3%A5?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-172682980?namespace=profile-us"},"name":"Nashirå","id":172682980,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":35},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/zzyd?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-178429290?namespace=profile-us"},"name":"Zzyd","id":178429290,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/pawsketti?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-242764983?namespace=profile-us"},"name":"Pawsketti","id":242764983,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/22?namespace=static-11.0.7_57788-us"},"name":"Worgen","id":22},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/ayemdee?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142068345?namespace=profile-us"},"name":"Ayemdee","id":142068345,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/11?namespace=static-11.0.7_57788-us"},"name":"Druid","id":11},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":13},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/nelfspriest?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142080621?namespace=profile-us"},"name":"Nelfspriest","id":142080621,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/4?namespace=static-11.0.7_57788-us"},"name":"Night Elf","id":4},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/ant%C3%A5res?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-142107313?namespace=profile-us"},"name":"Antåres","id":142107313,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/11?namespace=static-11.0.7_57788-us"},"name":"Draenei","id":11},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":3},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/pawsketti?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-156493522?namespace=profile-us"},"name":"Pawsketti","id":156493522,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/22?namespace=static-11.0.7_57788-us"},"name":"Worgen","id":22},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/garrosh/vindicatus?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1373-157518834?namespace=profile-us"},"name":"Vindicatus","id":157518834,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1373?namespace=dynamic-us"},"name":"Garrosh","id":1373,"slug":"garrosh"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/30?namespace=static-11.0.7_57788-us"},"name":"Lightforged Draenei","id":30},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":10},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/pawsketti?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-230057721?namespace=profile-us"},"name":"Pawsketti","id":230057721,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/35?namespace=static-11.0.7_57788-us"},"name":"Vulpera","id":35},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":10},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/alexstrasza/phayt?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1070-223408774?namespace=profile-us"},"name":"Phayt","id":223408774,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1070?namespace=dynamic-us"},"name":"Alexstrasza","id":1070,"slug":"alexstrasza"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/11?namespace=static-11.0.7_57788-us"},"name":"Draenei","id":11},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":11},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/alexstrasza/flynnian?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1070-226952585?namespace=profile-us"},"name":"Flynnian","id":226952585,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1070?namespace=dynamic-us"},"name":"Alexstrasza","id":1070,"slug":"alexstrasza"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/22?namespace=static-11.0.7_57788-us"},"name":"Worgen","id":22},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/alexstrasza/elzzid?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1070-226952593?namespace=profile-us"},"name":"Elzzid","id":226952593,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1070?namespace=dynamic-us"},"name":"Alexstrasza","id":1070,"slug":"alexstrasza"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/6?namespace=static-11.0.7_57788-us"},"name":"Death Knight","id":6},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":10},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/alexstrasza/pawsketti?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1070-230059893?namespace=profile-us"},"name":"Pawsketti","id":230059893,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1070?namespace=dynamic-us"},"name":"Alexstrasza","id":1070,"slug":"alexstrasza"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/11?namespace=static-11.0.7_57788-us"},"name":"Druid","id":11},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/22?namespace=static-11.0.7_57788-us"},"name":"Worgen","id":22},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/thrall/pawsketti?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1263-230060275?namespace=profile-us"},"name":"Pawsketti","id":230060275,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1263?namespace=dynamic-us"},"name":"Thrall","id":1263,"slug":"thrall"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/6?namespace=static-11.0.7_57788-us"},"name":"Death Knight","id":6},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/35?namespace=static-11.0.7_57788-us"},"name":"Vulpera","id":35},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":10}]},{"id":38155549,"characters":[{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/thingeins?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242878354?namespace=profile-us"},"name":"Thingeins","id":242878354,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/7?namespace=static-11.0.7_57788-us"},"name":"Gnome","id":7},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":20},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/vanroyu?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-243028439?namespace=profile-us"},"name":"Vanroyu","id":243028439,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/25?namespace=static-11.0.7_57788-us"},"name":"Pandaren","id":25},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":20},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/thrall/vindifesa?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1263-158344229?namespace=profile-us"},"name":"Vindifesa","id":158344229,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1263?namespace=dynamic-us"},"name":"Thrall","id":1263,"slug":"thrall"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/8?namespace=static-11.0.7_57788-us"},"name":"Mage","id":8},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/thrall/zealzzid?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1263-158344245?namespace=profile-us"},"name":"Zealzzid","id":158344245,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1263?namespace=dynamic-us"},"name":"Thrall","id":1263,"slug":"thrall"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/5?namespace=static-11.0.7_57788-us"},"name":"Undead","id":5},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":1}]},{"id":46005871,"characters":[{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/thingzwei?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-242878420?namespace=profile-us"},"name":"Thingzwei","id":242878420,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/11?namespace=static-11.0.7_57788-us"},"name":"Druid","id":11},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/22?namespace=static-11.0.7_57788-us"},"name":"Worgen","id":22},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":20},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/area-52/narcyniss?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1566-243027800?namespace=profile-us"},"name":"Narcyniss","id":243027800,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1566?namespace=dynamic-us"},"name":"Area 52","id":1566,"slug":"area-52"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/10?namespace=static-11.0.7_57788-us"},"name":"Monk","id":10},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/29?namespace=static-11.0.7_57788-us"},"name":"Void Elf","id":29},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":20},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/zafinia?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-99917875?namespace=profile-us"},"name":"Zafinia","id":99917875,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/3?namespace=static-11.0.7_57788-us"},"name":"Hunter","id":3},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":1}]},{"id":44080454,"characters":[{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/elzzidb?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-167850955?namespace=profile-us"},"name":"Elzzidb","id":167850955,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/1?namespace=static-11.0.7_57788-us"},"name":"Human","id":1},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/senjin/corion?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1185-93957334?namespace=profile-us"},"name":"Corion","id":93957334,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1185?namespace=dynamic-us"},"name":"Sen'jin","id":1185,"slug":"senjin"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/5?namespace=static-11.0.7_57788-us"},"name":"Undead","id":5},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":5},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/senjin/derant?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/1185-94720356?namespace=profile-us"},"name":"Derant","id":94720356,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/1185?namespace=dynamic-us"},"name":"Sen'jin","id":1185,"slug":"senjin"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/8?namespace=static-11.0.7_57788-us"},"name":"Troll","id":8},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":1}]},{"id":55301889,"characters":[{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/elzzidc?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-167851005?namespace=profile-us"},"name":"Elzzidc","id":167851005,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/5?namespace=static-11.0.7_57788-us"},"name":"Priest","id":5},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/1?namespace=static-11.0.7_57788-us"},"name":"Human","id":1},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/crosys?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-97053455?namespace=profile-us"},"name":"Crosys","id":97053455,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/8?namespace=static-11.0.7_57788-us"},"name":"Mage","id":8},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/5?namespace=static-11.0.7_57788-us"},"name":"Undead","id":5},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":29},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/nashir%C3%A5?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-97053534?namespace=profile-us"},"name":"Nashirå","id":97053534,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/11?namespace=static-11.0.7_57788-us"},"name":"Druid","id":11},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/8?namespace=static-11.0.7_57788-us"},"name":"Troll","id":8},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":3},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/azarious?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-97241645?namespace=profile-us"},"name":"Azarious","id":97241645,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/2?namespace=static-11.0.7_57788-us"},"name":"Paladin","id":2},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/6?namespace=static-11.0.7_57788-us"},"name":"Tauren","id":6},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"HORDE","name":"Horde"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/blackhand/sh%C3%A5yd?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/54-97581394?namespace=profile-us"},"name":"Shåyd","id":97581394,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/54?namespace=dynamic-us"},"name":"Blackhand","id":54,"slug":"blackhand"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/3?namespace=static-11.0.7_57788-us"},"name":"Hunter","id":3},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/10?namespace=static-11.0.7_57788-us"},"name":"Blood Elf","id":10},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"HORDE","name":"Horde"},"level":5}]},{"id":89097224,"characters":[{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/leyanee?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-170037427?namespace=profile-us"},"name":"Leyanee","id":170037427,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/24?namespace=static-11.0.7_57788-us"},"name":"Pandaren","id":24},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"NEUTRAL","name":"Neutral"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/zefyro?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-170054502?namespace=profile-us"},"name":"Zefyro","id":170054502,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/7?namespace=static-11.0.7_57788-us"},"name":"Gnome","id":7},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":35},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/silentgee?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-170054615?namespace=profile-us"},"name":"Silentgee","id":170054615,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/7?namespace=static-11.0.7_57788-us"},"name":"Gnome","id":7},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":35},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/zyne?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-170055089?namespace=profile-us"},"name":"Zyne","id":170055089,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/1?namespace=static-11.0.7_57788-us"},"name":"Warrior","id":1},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/7?namespace=static-11.0.7_57788-us"},"name":"Gnome","id":7},"gender":{"type":"MALE","name":"Male"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":1},{"character":{"href":"https://us.api.blizzard.com/profile/wow/character/proudmoore/hylianna?namespace=profile-us"},"protected_character":{"href":"https://us.api.blizzard.com/profile/user/wow/protected-character/5-170447768?namespace=profile-us"},"name":"Hylianna","id":170447768,"realm":{"key":{"href":"https://us.api.blizzard.com/data/wow/realm/5?namespace=dynamic-us"},"name":"Proudmoore","id":5,"slug":"proudmoore"},"playable_class":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-class/4?namespace=static-11.0.7_57788-us"},"name":"Rogue","id":4},"playable_race":{"key":{"href":"https://us.api.blizzard.com/data/wow/playable-race/25?namespace=static-11.0.7_57788-us"},"name":"Pandaren","id":25},"gender":{"type":"FEMALE","name":"Female"},"faction":{"type":"ALLIANCE","name":"Alliance"},"level":35}]}],"collections":{"href":"https://us.api.blizzard.com/profile/user/wow/collections?namespace=profile-us"}} \ No newline at end of file diff --git a/testing.sh b/testing.sh index 27d745a..a90b194 100644 --- a/testing.sh +++ b/testing.sh @@ -1,10 +1,3 @@ -CLIENT_ID="a79bae348867427690ca6df9903e4af0" -CLIENT_SECRET="VfFc4JRxn4MpA5zRVut1gPIh6E5WrEC5" -# CLIENT_ACCESS_TOKEN_RESPONSE="$(curl -u $CLIENT_ID:$CLIENT_SECRET -d grant_type=client_credentials https://oauth.battle.net/token)" -# CLIENT_ACCESS_TOKEN=$(echo $CLIENT_ACCESS_TOKEN_RESPONSE | jq -r '.access_token') -OAUTH_ACCESS_CODE="USGUSBUZGNQ29JBWKMVFWHIUKIUXUHWW88" -OAUTH_ACCESS_TOKEN_RESPONSE="$(curl -X POST https://oauth.battle.net/token -u $CLIENT_ID:$CLIENT_SECRET -d http://localhost:5635/login_success -d grant_type=authorization_code -d code=$OAUTH_ACCESS_CODE)" -# OAUTH_ACCESS_TOKEN=$(echo $OAUTH_ACCESS_TOKEN_RESPONSE | jq -r '.access_token') -echo $OAUTH_ACCESS_TOKEN_RESPONSE -# curl -H "Authorization: Bearer $CLIENT_ACCESS_TOKEN" "https://us.api.blizzard.com/data/wow/token/?namespace=dynamic-us" | jq +token=$(cat .oauthtoken) +curl -H "Authorization: Bearer $token" "https://us.api.blizzard.com/data/wow/token/?namespace=dynamic-us" | fx # curl -H "Authorization: Bearer $CLIENT_ACCESS_TOKEN" "https://us.api.blizzard.com/data/wow/guild/proudmoore/stellar/roster?namespace=profile-us" | jq '.members[].character.name' diff --git a/toon-info.py b/toon-info.py new file mode 100644 index 0000000..9ba3958 --- /dev/null +++ b/toon-info.py @@ -0,0 +1,78 @@ +import http.server +from oauthlib.oauth2 import WebApplicationClient +import webbrowser +import re +import subprocess +import ast +import json +import csv +from datetime import datetime + + +token_file = open(".oauthtoken", "r") +oauth_token = token_file.readline() + +def json_print(dict_in): + print(json.dumps(dict_in, indent=2)) + +def oauth_api_curl(url): + command = ["curl", "-sH", "Authorization: Bearer {}".format( + oauth_token), url] + result = subprocess.run(command, stdout=subprocess.PIPE, + stderr=subprocess.PIPE, text=True) + + if result.returncode == 0: + return result.stdout + else: + error = result.stderr + print("Error:") + return error + +account_str = oauth_api_curl("https://us.api.blizzard.com/profile/user/wow?namespace=profile-us&locale=en_US") +account_eval = ast.literal_eval(account_str) + +if type(account_eval) == dict: + characters = account_eval['wow_accounts'][0]['characters'] + char_dicts = [] + for char in characters: + char_dict = { + 'id': char['id'], + 'name': char['name'], + 'level': char['level'], + 'faction': char['faction']['name'], + 'race': char['playable_race']['name'], + 'class': char['playable_class']['name'], + 'realm': char['realm']['name'], + } + char_dicts.append(char_dict) + + + char_keys = char_dicts[0].keys() + + with open('./output/toons-{}.csv'.format(datetime.now().strftime("%Y%m%d-%H%M%S")), 'w', newline='') as output_file: + dict_writer = csv.DictWriter(output_file, char_keys) + dict_writer.writeheader() + dict_writer.writerows(char_dicts) + + + prot_char_url = char['protected_character']['href'] + prot_char_str = oauth_api_curl(prot_char_url) + prot_char_eval = ast.literal_eval(prot_char_str) + + if type(prot_char_eval) == dict: + print(prot_char_eval['protected_stats'].keys()) + else: + print('eval\'d type:', type(prot_char_eval)) + + + profs_url = "https://us.api.blizzard.com/profile/wow/character/{}/{}/professions?namespace=profile-us&locale=en_US".format( + char['realm']['slug'], char['name'].lower()) + profs_str = oauth_api_curl(profs_url) + profs_eval = ast.literal_eval(profs_str) + if type(profs_eval) == dict: + json_print(profs_eval) + else: + print('eval\'d type:', type(profs_eval)) +else: + print('eval\'d type:', type(account_eval)) + diff --git a/toons-csv.sh b/toons-csv.sh deleted file mode 100644 index f616a89..0000000 --- a/toons-csv.sh +++ /dev/null @@ -1 +0,0 @@ -curl -H "Authorization: Bearer USCdfWcbxv1hGYQDPWSXbvr84SHme9eJ5T" "https://us.api.blizzard.com/profile/user/wow?namespace=profile-us&locale=en_US" | jq -r '.wow_accounts[0].characters[] | [.name, .level] | @csv'