Sync with Waxpeer session to auto-fill API key

Buy order trigger history

GET/v1/buy-order-history

Prices are integers. 1000 = $1.00 USD.

Parameters

NameLocationTypeDescription
api
required
querystring
skip
optional
querynumber

By default it will return 50 trades, use skip to fetch more (Max: 2000)

game
optional
queryenum

Which game would you like to get items from (without game param will return for all)

enum: csgo, tf2, rust, dota2

sort
optional
queryenum

Sort by date (ASC/DESC)

enum: ASC, DESC

Responses

200 successful operation

Response
{
  "success": false,
  "history": [
    {
      "id": 0,
      "item_name": "string",
      "game": "string",
      "price": 0,
      "created": "2020-03-25T07:10:03.674Z",
      "last_updated": "2020-03-25T07:10:03.674Z",
      "msg": "string"
    }
  ],
  "count": 2
}