Get user's stats by user id
GET
/stats/id/{plateform}/{id}
Stats
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://skynewz-api-fortnite.herokuapp.com/api/stats/id//'
Response Response Example
200 - Example 1
{
"group": {
"duo": {
"k/d": 0,
"kills": 0,
"killsPerMatch": "string",
"killsPerMin": "string",
"score": 0,
"timePlayed": "string",
"top10": 0,
"top12": 0,
"top25": 0,
"top3": 0,
"top5": 0,
"top6": 0,
"win%": 0,
"wins": 0
},
"solo": {
"k/d": 0,
"kills": 0,
"killsPerMatch": "string",
"killsPerMin": "string",
"score": 0,
"timePlayed": "string",
"top10": 0,
"top12": 0,
"top25": 0,
"top3": 0,
"top5": 0,
"top6": 0,
"win%": 0,
"wins": 0
},
"squad": {
"k/d": 0,
"kills": 0,
"killsPerMatch": "string",
"killsPerMin": "string",
"score": 0,
"timePlayed": "string",
"top10": 0,
"top12": 0,
"top25": 0,
"top3": 0,
"top5": 0,
"top6": 0,
"win%": 0,
"wins": 0
}
},
"info": {
"accountId": 0,
"plateform": "string",
"username": "string"
},
"lifetimeStats": {
"k/d": 0,
"kills": 0,
"killsPerMatch": "string",
"killsPerMin": "string",
"score": 0,
"timePlayed": "string",
"top10": 0,
"top12": 0,
"top25": 0,
"top3": 0,
"top5": 0,
"top6": 0,
"win%": 0,
"wins": 0
}
}
Request
Path Params
plateform
string
required
id
string
required
Responses
Modified at 2023-08-15 05:55:56