Overwatch API overwatch
Blizzard Entertainment
battlenet
xbl
psn
Get an Overwatch player's profile stats (v2)
Create an app to try it out!
Retrieve career stats for an Overwatch player.
Request
GET https://public-api.tracker.gg/v2/overwatch/standard/profile/{platform}/{platformUserIdentifier}
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be one of 'battlenet', 'psn', 'xbl'. |
platformUserIdentifier | string | Yes | The user's handle on Battle.net (including #) or a PSN ID, or Xbox Gamertag. |
Response
Status Code | Description | Response |
---|---|---|
200 Success | Stats for the requested Overwatch player. | ApiResponse<StatsProfile> |
Get a stats segment for an Overwatch player
Create an app to try it out!
Retrieve a portion of the stats for an Overwatch player. We divide stats into logical segments, such as playlists, seasons, heroes, etc. (whatever happens to be useful for a specific game.)
Request
GET https://public-api.tracker.gg/v2/overwatch/standard/profile/{platform}/{platformUserIdentifier}/segments/{segmentType}
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be one of 'battlenet', 'psn', 'xbl'. |
platformUserIdentifier | string | Yes | The user's handle on Battle.net (including #) or a PSN ID, or Xbox Gamertag. |
segmentType | string | Yes | The type of segment you want to return, ie. 'hero'. |
Response
Status Code | Description | Response |
---|---|---|
200 Success | Stats for the requested Overwatch player. | ApiResponse<Segment[]> |
Search for an Overwatch player
Create an app to try it out!
Allows you to perform a search for an Overwatch player using a unique identifier (their Battle.net ID) The result set is not guaranteed to be an exhaustive list of players that match the search.
Request
GET https://public-api.tracker.gg/v2/overwatch/standard/search
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be one of 'battlenet', 'psn', 'xbl'. |
query | string | Yes | The user's handle on Battle.net (including #) or a PSN ID, or Xbox Gamertag. |
Response
Status Code | Description | Response |
---|---|---|
200 Success | A list of search results. | ApiResponse<CollectorSearchResult[]> |