Goldmine
Confirmations

List mobile confirmations

POST
/steam.v1.Steam/ListConfirmations

Return a paginated list of an account's Steam mobile confirmations, optionally filtered by status. Each entry links to the trade offer or market listing it confirms.

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/steam.v1.Steam/ListConfirmations" \  -H "Content-Type: application/json" \  -d '{    "workspaceId": "AY86PB0ufwCKGyw9Tl9gcQ==",    "accountName": "trader_bot_01",    "status": "CONFIRMATION_STATUS_PENDING",    "limit": 50  }'
{
  "confirmations": [
    {
      "confirmationId": "14258039472",
      "accountName": "trader_bot_01",
      "workspaceId": "AY86PB0ufwCKGyw9Tl9gcQ==",
      "type": "trade",
      "creatorId": "6483920185",
      "status": "CONFIRMATION_STATUS_PENDING",
      "createdAt": "2026-06-29T11:31:00Z"
    }
  ],
  "nextCursor": "eyJpZCI6IjE0MjU4MDM5NDcyIn0="
}
{
  "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."
}