Skip to main content
POST
/
v1
/
account.listInventorySets
List inventory sets
curl --request POST \
  --url https://api.steamsets.com/v1/account.listInventorySets \
  --header 'Authorization: Bearer <token>'
{
  "sets": [
    {
      "appId": 1,
      "foil": [
        {
          "amount": 1,
          "name": "<string>"
        }
      ],
      "foilSets": 1,
      "normal": [
        {
          "amount": 1,
          "name": "<string>"
        }
      ],
      "normalSets": 1
    }
  ],
  "$schema": "<string>",
  "inventoryUpdatedAt": 123,
  "nextRefreshAt": 123
}

Authorizations

Authorization
string
header
required

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

Response

OK

sets
object[] | null
required

Inventory sets with ownership info

$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://api.steamsets.com/schemas/V1AccountListInventorySetsResponseBody.json"

inventoryUpdatedAt
integer<int64>

When inventory was last updated (unix millis)

nextRefreshAt
integer<int64>

When next refresh is allowed (unix seconds)