We've rebuilt our mobile app from the ground up with your favorite features and games.
Splitgate API splitgate
1047 Gamessteam
xbl
psn
Get a Splitgate player's profile stats
Retrieve career stats for a Splitgate player.
Request
GET https://public-api.tracker.gg/v2/splitgate/standard/profile/{platform}/{platformUserIdentifier}
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be 'steam', 'xbl' or 'psn'. |
platformUserIdentifier | string | Yes | The user's SteamID64, Xbox Gamertag, or PSN Id |
Response
Status Code | Description | Response |
---|---|---|
200 Success | Stats for the requested Splitgate player. | ApiResponse<StatsProfile> |
Get a Splitgate player's Matches
Retrieve all matches for a Splitgate Player
Request
GET https://public-api.tracker.gg/v2/splitgate/standard/matches/{platform}/{platformUserIdentifier}
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be 'steam', 'xbl' or 'psn'. |
platformUserIdentifier | string | Yes | The user's SteamID64, Xbox Gamertag, or PSN Id |
Response
Status Code | Description | Response |
---|---|---|
200 Success | Get recent matches for a Splitgate player. | ApiResponse<MatchResult> |
Get a Match
Retrieve a Detailed Match Report.
Request
GET https://public-api.tracker.gg/v1/splitgate/matches/{platform}/direct/{matchId}
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be 'steam', 'xbl' or 'psn'. |
matchId | string | Yes | The Match ID |
Response
Status Code | Description | Response |
---|---|---|
200 Success | Get a match report | ApiResponse<StatisticalObject> |
Get stats segments of a Splitgate player's profile
Retrieves additional stat segments for a particular player.
Request
GET https://public-api.tracker.gg/v2/splitgate/standard/profile/{platform}/{platformUserIdentifier}/segments/{segmentType}
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be 'steam', 'xbl' or 'psn'. |
platformUserIdentifier | string | Yes | The user's SteamID64, Xbox Gamertag, or PSN Id |
segmentType | string | Yes | The type of the segments to return. Can be 'weapon', 'map', 'gamemode', 'playlist', or 'overview'. |
queue | string | No | Can be empty, 'ranked' or 'social' |
season | number | No | To get season specific data for the player. Keep empty for lifetime. Weapon data is only available for lifetime. |
Response
Status Code | Description | Response |
---|---|---|
200 Success | Stat segments for the requested player / segment combo. | ApiResponse<Segment[]> |
Search for a Splitgate player
Allows you to perform a search for a Splitgate 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/splitgate/standard/search
Parameter | Type | Required | Description |
---|---|---|---|
platform | string | Yes | The platform slug, must be 'steam', 'xbl' or 'psn'. |
query | string | Yes | The user's SteamID64, Xbox Gamertag, or PSN Id. For Steam it can also be their steamcommunity url or vanity name. |
Response
Status Code | Description | Response |
---|---|---|
200 Success | A list of search results. | ApiResponse<CollectorSearchResult[]> |