Skip to content
Revadike edited this page Jul 6, 2021 · 2 revisions

GET /updated/ajaxgetmyappsraw

Rate limits

No known rate limit

Request

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?)

Response

200 OK

Name Type Description
success number 1 if successful, see steam errors
apps[] 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

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"
        }
    ]
}
Clone this wiki locally