Get My Apps Raw - Revadike/InternalSteamWebAPI GitHub Wiki
GET /updated/ajaxgetmyappsraw
Rate limits
No known rate limit
Request
Authenticated: Yes
Method:
GETHost:
store.steampowered.comPath:
/updated/ajaxgetmyappsrawQuery Parameters:
Name Type Required Description pagenumber No Index of the page numPerPagenumber No The amount of items per page includeAnnouncementsboolean No Whether to include announcements (not working?)
Response
200 OK
Name Type Description successnumber 1if successful, see steam errorsapps[]array Array of apps apps[].appidstring The Steam AppID apps[].datenumber Timestamp when it was updated apps[].can_playbool Indicates it can be played? apps[].playtimenumber Total playtime of the app apps[].announcementidnumber ID of the announcement
Example
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"
}
]
}