SteamSets
ApiAccount

Get Apps

POST
/account.v1.AccountService/GetApps
/account.v1.AccountService/GetApps

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

idobject

vanityobject

curl -X POST "https://api.steamsets.com/account.v1.AccountService/GetApps" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "id": {
      "accountId": 0,
      "steamId64": "stringstringstrin"
    },
    "vanity": {
      "type": "steam",
      "value": "string"
    }
  }'

OK

{
  "apps": [
    {
      "id": 730,
      "image": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/apps/730/a1a2f9f3f4c0c2b1f8d3a4e5f6d7e8f9.jpg",
      "name": "Counter-Strike: Global Offensive",
      "playtime": 123456,
      "price": 1200,
      "shortName": "csgo"
    }
  ]
}