
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
overwatch-stats-api
Advanced tools
Get stats from Blizzard's career profile pages.
https://playoverwatch.com/en-us/career/PLATFORM/BATTLETAG
Gets rank level, endorsements, hero stats and most played time for quickplay and competitive.
const ow = require('overwatch-stats-api');
(async () => {
const stats = await ow.getAllStats('HusseinObama-11715', 'pc');
console.log(stats);
})();
getAllStats() and cache it for some time, using each part as needed since accessing and downloading the whole page multiple times for each different section of stats will result in excessive hits to Blizzard's site and could potentially lead to ratelimits.battletag are Blizzard battletags in the "NAME-DISCRIMINATOR" format (e.g. "xQc-11273") and are case sensitive.
platform can be either pc, xbl or psn for PC, Xbox Live and PlayStation Network profiles respectively.
Get all stats from other 3 methods combined.
For an updated full response please see the demo.
{
"battletag": "HusseinObama-11715",
"rank": {
"damage": {
"sr": "4021",
"roleIcon": "https://static.playoverwatch.com/img/pages/career/icon-offense-6267addd52.png",
"tierIcon": "https://d1u1mce87gyfbn.cloudfront.net/game/rank-icons/rank-GrandmasterTier.png"
},
"support": {
"sr": "3766",
"roleIcon": "https://static.playoverwatch.com/img/pages/career/icon-support-46311a4210.png",
"tierIcon": "https://d1u1mce87gyfbn.cloudfront.net/game/rank-icons/rank-MasterTier.png"
},
"tank": {
"sr": "3556",
"roleIcon": "https://static.playoverwatch.com/img/pages/career/icon-tank-8a52daaf01.png",
"tierIcon": "https://d1u1mce87gyfbn.cloudfront.net/game/rank-icons/rank-MasterTier.png"
}
},
"level": "42",
"prestige": "8",
"endorsementLevel": "2",
"endorsements": {
"shotcaller": "22",
"teammate": "58",
"sportsmanship": "20"
},
"profileURL": "https://playoverwatch.com/en-us/career/pc/HusseinObama-11715",
"iconURL": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f5a1929df2af047300e2fe438c1a6ee6a349b47c82a86198540ca43e89ed5ceb.png",
"borderURL": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ba68d2c0f1b55e1991161cb1f88f369b97311452564b200ea1da226eb493e2e8.png",
"starsURL": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/426c754c76cd12e6aacd30293a67363571341eea37880df549d3e02015a588fe.png",
"heroStats": {
"competitive": {
"overall": {
"combat": { ... },
"assists": { ... },
"best": { ... },
"average": { ... },
"game": { ... },
"miscellaneous": { ... },
"match_awards": { ... },
},
"ana": {
...
},
...
},
"quickplay": {
...
}
},
"mostPlayed": {
"competitive": {
"mei": {
"time": "16:05:18",
"img": "https://d1u1mce87gyfbn.cloudfront.net/game/heroes/small/0x02E00000000000DD.png"
},
"dva": {
...
},
...
},
"quickplay": {
...
}
}
}
Get basic info like rank, level, endorsements and link to profile, stars and border images.
{
"battletag": "HusseinObama-11715",
"rank": {
"damage": {
"sr": "4021",
"roleIcon": "https://static.playoverwatch.com/img/pages/career/icon-offense-6267addd52.png",
"tierIcon": "https://d1u1mce87gyfbn.cloudfront.net/game/rank-icons/rank-GrandmasterTier.png"
},
"support": {
"sr": "3766",
"roleIcon": "https://static.playoverwatch.com/img/pages/career/icon-support-46311a4210.png",
"tierIcon": "https://d1u1mce87gyfbn.cloudfront.net/game/rank-icons/rank-MasterTier.png"
},
"tank": {
"sr": "3556",
"roleIcon": "https://static.playoverwatch.com/img/pages/career/icon-tank-8a52daaf01.png",
"tierIcon": "https://d1u1mce87gyfbn.cloudfront.net/game/rank-icons/rank-MasterTier.png"
}
},
"level": "42",
"prestige": "8",
"endorsementLevel": "2",
"endorsements": {
"shotcaller": "22",
"teammate": "58",
"sportsmanship": "20"
},
"profileURL": "https://playoverwatch.com/en-us/career/pc/HusseinObama-11715",
"iconURL": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f5a1929df2af047300e2fe438c1a6ee6a349b47c82a86198540ca43e89ed5ceb.png",
"rankIconURL": "https://d1u1mce87gyfbn.cloudfront.net/game/rank-icons/rank-PlatinumTier.png",
"borderURL": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ba68d2c0f1b55e1991161cb1f88f369b97311452564b200ea1da226eb493e2e8.png",
"starsURL": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/426c754c76cd12e6aacd30293a67363571341eea37880df549d3e02015a588fe.png"
}
Get hero stats for competitive and quickplay with categories under each hero and an "overall" hero for overall stats in that mode categories are combat, assists, best, average, game, miscellaneous and match_awards.
{
"competitive": {
"overall": {
"combat": { ... },
"assists": { ... },
"best": { ... },
"average": { ... },
"game": { ... },
"miscellaneous": { ... },
"match_awards": { ... },
},
"ana": {
...
},
...
},
"quickplay": {
...
}
}
Get the most played heros for competitive and quickplay with a HH:MM:SS time string and link to their thumbnail image in descending order of time played.
{
"competitive": {
"mei": {
"time": "16:05:18",
"img": "https://d1u1mce87gyfbn.cloudfront.net/game/heroes/small/0x02E00000000000DD.png"
},
"dva": {
...
},
...
},
"quickplay": {
...
}
}
These methods return promises that are sometimes rejected with an Error:
Error('PROFILE_NOT_FOUND');Error('PROFILE_PRIVATE');You can try this package with RunKit.
FAQs
get stats from blizzard career profile pages
The npm package overwatch-stats-api receives a total of 7 weekly downloads. As such, overwatch-stats-api popularity was classified as not popular.
We found that overwatch-stats-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.