API
ReferenceTrading

Your backpack

GET
/public/v1/backpack

Your on-site items, paginated. Each row's id is the backpack item id, the value you pass to withdraw. trade_locked_until is set while Steam's trade hold applies. Optional app_id and search filters.

AuthorizationBearer <token>

API key generated from your account settings on the website. Send as Authorization: Bearer csd_....

In: header

Query Parameters

page*string
Match^[1-9]\d*$
limit*string

Value in

  • "5"
  • "10"
  • "25"
  • "30"
  • "50"
  • "100"
app_id?string
Match^[1-9]\d*$
search?string
Length1 <= length <= 200

Response Body

application/json

curl -X GET "https://example.com/public/v1/backpack?page=string&limit=5"
{  "items": [    {      "id": 1,      "app_id": 1,      "market_hash_name": "string",      "amount": -9007199254740991,      "commodity": true,      "market_price": -9007199254740991,      "trade_locked_until": "2019-08-24T14:15:22Z"    }  ],  "metadata": {    "total_pages": -9007199254740991,    "total_items": -9007199254740991,    "current_page": -9007199254740991,    "current_limit": -9007199254740991  }}