We've rebuilt our mobile app from the ground up with your favorite features and games.
CS:GO API csgo
Valve steam
Get a CSGO player's profile stats (v2)
Retrieve career stats for an CSGO player.
Request
GET https://public-api.tracker.gg/v2/csgo/standard/profile/{platform}/{platformUserIdentifier}
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be 'steam'. |
platformUserIdentifier | string | Yes | The user's handle on Steam, ie. a Steam ID, Steam Community URL, Steam Vanity Username, etc. |
Response
Status Code | Description | Response |
---|---|---|
200 Success | Stats for the requested CSGO player. | ApiResponse<StatsProfile> |
Get a stats segment for a CSGO player
Retrieve a portion of the stats for a CSGO 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/csgo/standard/profile/{platform}/{platformUserIdentifier}/segments/{segmentType}
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be 'steam'. |
platformUserIdentifier | string | Yes | The user's handle on Steam, ie. a Steam ID, Steam Community URL, Steam Vanity Username, etc. |
segmentType | string | Yes | The type of segment you want to return, ie. 'map', or 'weapon'. |
Response
Status Code | Description | Response |
---|---|---|
200 Success | Stats for the requested CSGO player. | ApiResponse<Segment[]> |
Search for a CSGO player
Allows you to perform a search for a CSGO player using a unique identifier (a Steam ID, Steam Community URL, Steam Vanity Username, etc.) 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/csgo/standard/search
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be 'steam'. |
query | string | Yes | The user's handle on Steam, ie. a Steam ID, Steam Community URL, Steam Vanity Username, etc. |
Response
Status Code | Description | Response |
---|---|---|
200 Success | A list of search results. | ApiResponse<CollectorSearchResult[]> |