Skip to main content
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 '
{
  "page": 1,
  "filters": {
    "appType": "<string>",
    "excludeEvents": true,
    "excludeSales": true,
    "playtime": {
      "max": 123,
      "min": 123
    }
  },
  "id": {
    "accountId": 1,
    "steamId64": "<string>"
  },
  "order": {
    "by": "appId",
    "direction": "desc"
  },
  "search": "<string>",
  "vanity": {
    "type": "steam",
    "value": "<string>"
  }
}
'
{
  "apps": [
    {
      "id": 1,
      "image": "<string>",
      "name": "<string>",
      "playtime": 1,
      "price": 123
    }
  ],
  "pages": 123,
  "totalHits": 123,
  "$schema": "<string>"
}
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
page
integer<int32>
default:1
required
Required range: x >= 0
filters
object
id
object
order
object
search
string | null
vanity
object

Response

OK

apps
object[] | null
required
pages
integer<int32>
required

The number of pages

totalHits
integer<int32>
required

The total number of hits for all pages

$schema
string<uri>

A URL to the JSON Schema for this object.