POST
/
v1
/
account.listApps
List account owned apps
curl --request POST \
  --url https://api.steamsets.com/v1/account.listApps \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "filters": {
    "appType": "<string>",
    "excludeEvents": true,
    "excludeSales": true,
    "playtime": {
      "max": 123,
      "min": 123
    }
  },
  "id": {
    "accountId": 1,
    "steamId64": "<string>"
  },
  "order": {
    "by": "appId",
    "direction": "desc"
  },
  "page": 1,
  "search": "<string>",
  "vanity": {
    "type": "steam",
    "value": "<string>"
  }
}'
{
  "$schema": "https://api.steamsets.com/schemas/V1AccountListAppsResponseBody.json",
  "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
    }
  ],
  "pages": 1,
  "totalHits": 1
}
This endpoint supports API key authentication for external integrations

API Access

This endpoint can be accessed using:
  • API Keys: For external applications and integrations
  • User Sessions: For web application access
See our API documentation for authentication details.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

OK

The response is of type object.