Buy order trigger history
Prices are integers. 1000 = $1.00 USD.
Parameters
| Name | Location | Type | Description |
|---|---|---|---|
apirequired | query | string | Your WAXPEER API |
skipoptional | query | number | By default it will return 50 trades, use skip to fetch more (Max: 2000) |
gameoptional | query | enum | Which game would you like to get items from (without game param will return for all) enum: csgo, tf2, rust, dota2 |
sortoptional | query | enum | Sort by date (ASC/DESC) enum: ASC, DESC |
Responses
200 successful operation
{
"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
}