Sync with Waxpeer session to auto-fill API key

List steam items from inventory

POST/v1/list-items-steam

Array of items (Recommended number of items per request is 100)

Rate limit of list/edit actions for each item_id is 2 requests per 120 seconds

Note: For Rust items item_id must be a string type, since id is greater than the maximum for number type

Prices are integers. 1000 = $1.00 USD.

Parameters

NameLocationTypeDescription
api
required
querystring
game
optional
queryenum

Which game would you like to fetch items from

enum: csgo, tf2, rust, dota2

Request body

NameLocationTypeDescription
items
optional
bodyarray<object>
item_id
optional
bodynumber

Steam item_id from /get-my-inventory endpoint. Rate limit of list/edit actions for each item_id is 2 requests per 120 seconds

price
optional
bodynumber

Item price (1000 = 1$)

Example
{
  "items": [
    {
      "item_id": 141414144,
      "price": 1000
    }
  ]
}

Responses

200 successful operation

Response
{
  "success": true,
  "msg": "no items",
  "listed": [
    {
      "item_id": 141414144,
      "price": 1000,
      "name": "AWP | Asiimov (Field-tested)"
    }
  ],
  "failed": [
    {
      "item_id": 141414145,
      "price": 1000,
      "msg": "You can list your item after 40 seconds",
      "msBeforeNext": 39636
    }
  ]
}