-
Notifications
You must be signed in to change notification settings - Fork 18
Get My Apps Raw
Revadike edited this page Jul 6, 2021
·
2 revisions
No known rate limit
Authenticated: Yes
Method:
GET
Host:
store.steampowered.com
Path:
/updated/ajaxgetmyappsraw
Query Parameters:
Name Type Required Description page
number No Index of the page numPerPage
number No The amount of items per page includeAnnouncements
boolean No Whether to include announcements (not working?)
Name Type Description success
number 1
if successful, see steam errorsapps[]
array Array of apps apps[].appid
string The Steam AppID apps[].date
number Timestamp when it was updated apps[].can_play
bool Indicates it can be played? apps[].playtime
number Total playtime of the app apps[].announcementid
number ID of the announcement
GET https://store.steampowered.com/updated/ajaxgetmyappsraw?page=1&numPerPage=500&includeAnnouncements=true
{
"success": 1,
"apps": [
{
"appid": 1201240,
"date": 1625447633,
"can_play": true,
"playtime": 0,
"announcementid": "5652561542224316798"
}
]
}