Sync with Waxpeer session to auto-fill API key

Force check the status of a specific trade

POST/v1/force-check-trade

Manually triggers a status check for a trade. Can only be used by the buyer or seller of the trade, and is limited to once per hour per trade based on the last_updated timestamp.

Prices are integers. 1000 = $1.00 USD.

Parameters

NameLocationTypeDescription
api
required
querystring

Request body

NameLocationTypeDescription
id
required
bodyinteger

Steam item ID (from steam_items table)

Example
{
  "id": 12345
}

Responses

200 Force check response

Response
{
  "success": true,
  "msg": "Force check requested successfully"
}

400 Invalid request

Response
{
  "success": false,
  "msg": "Valid steam item ID is required"
}