-
Notifications
You must be signed in to change notification settings - Fork 27
Get App User Details
Revadike edited this page Feb 24, 2022
·
3 revisions
No known rate limit
Authenticated: Yes
Method:
GETHost:
store.steampowered.comPath:
/api/appuserdetailsQuery Parameters:
Name Type Required Description appidsstring Yes CSV of Steam AppIDs to return details of.
Name Type Description :appidobject The Steam AppID :appid.successboolean trueif successful, elsefalse:appid.dataobject Information about apps & users in the context of the Steam account logged in to storefront. :appid.data.friendswant[]array Array of friends who want it, and their playtimes. :appid.data.friendswant[].steamidstring The friend's SteamID64 :appid.data.friendswant[].playtime_twoweeksnumber The total number of minutes played in the last 2 weeks. :appid.data.friendswant[].playtime_totalnumber The total number of minutes played "on record", since Steam began tracking total playtime in early 2009. :appid.data.friendsown[]array Array of friends who own it, and their playtimes. :appid.data.friendsown[].steamidstring The friend's SteamID64 :appid.data.friendsown[].playtime_twoweeksnumber The total number of minutes played in the last 2 weeks. :appid.data.friendsown[].playtime_totalnumber The total number of minutes played "on record", since Steam began tracking total playtime in early 2009. :appid.data.recommendationsobject The friend recommendations :appid.data.recommendations.totalfriendsnumber Amount of friends who recommended it. :appid.data.recommendations.friends[]array Array of friends who recommended it. :appid.data.recommendations.friends[].steamidstring The friend's SteamID64 :appid.data.recommendations.friends[].timestampnumber The creation timestamp (UNIX) of the worded recommendation. :appid.data.recommendations.friends[].recommendationstring The content/text of the worded recommendation. :appid.data.recommendations.friends[].commentcountnumber The amount of comments left on the worded recommendation. :appid.data.added_to_wishlistboolean Indicates inclusion in wishlist. :appid.data.is_ownedboolean Indicates ownership. Omitted when false.
GET https://store.steampowered.com/api/appuserdetails?appids=440
{
"440": {
"success": true,
"data": {
"friendsown": [
{
"steamid": "76561198032591844",
"playtime_twoweeks": 0,
"playtime_total": 47863
}
],
"recommendations": {
"totalfriends": 33,
"friends": [
{
"steamid": "76561198032591844",
"timestamp": 1615849266,
"recommendation": "FACEIT will single-handedly save this game!\n\nClassic 12v12s, ÜberCharged \nNo cheaters and cheater-bots\nProgression and Prizes\n\nPretty Pog",
"commentcount": 0
}
]
},
"added_to_wishlist": false,
"is_owned": true
}
}
}