Goldmine
Inventory Changes

List recorded inventory changes for a Steam account

POST
/analytics.v1.Analytics/ListInventoryItemChanges

Returns the change log of inventory items added, updated, or removed for a Steam account in a workspace, newest first. Results are paginated through a cursor, and an account with no recorded changes returns an empty list.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://loading/analytics.v1.Analytics/ListInventoryItemChanges" \  -H "Content-Type: application/json" \  -d '{    "workspaceId": "AAECAwQFBgcICQoLDA0ODw==",    "accountName": "trade_bot_01",    "limit": 50  }'
{
  "changes": [
    {
      "assetId": "38502819374",
      "observedAt": "2026-06-29T11:42:13Z",
      "action": "created",
      "classId": "5564148233",
      "instanceId": "188530139",
      "marketHashName": "AK-47 | Redline (Field-Tested)",
      "appId": 730,
      "contextId": "2",
      "amount": "1"
    }
  ],
  "nextCursor": "eyJvIjoiMjAyNi0wNi0yOVQxMTo0MjoxM1oiLCJhIjoiMzg1MDI4MTkzNzQifQ=="
}
{
  "code": "invalid_argument",
  "message": "The request was malformed, such as a missing required field or an unparseable cursor."
}
{
  "code": "unauthenticated",
  "message": "The request lacks a valid API key in the Authorization header."
}
{
  "code": "permission_denied",
  "message": "The API key is not allowed to perform this action on this workspace."
}
{
  "code": "resource_exhausted",
  "message": "The request was rate limited. Slow down and retry later."
}
{
  "code": "internal",
  "message": "An internal server error occurred."
}