Sync with Waxpeer session to auto-fill API key

Buy items using item_id and send to specific tradelink

GET/v1/buy-one-p2p

Notes about trades and frequently asked questions

The duration of the trade in different situations:

If seller's info is invalid then it can be cancelled immediately and status 6 is set;

If seller's details are valid, but no trade is created, then it will auto-cancel after 6 minutes;

if created or waiting for mobile confirmation then it will auto-cancel after 11 to 15 min (depends on when created);

if trade is waiting for mobile confirmation and connection with the seller was lost then it will auto-cancel after 6 hours.

We recommend adding project_id to purchase so that you can track a trade in case of a timeout or break of purchase request using the /check-many-project-id GET method one minute after the request.

An array of possible messages with purchase errors and other information, such as status, can be seen by opening the response scheme, where:

System busy - trade is cancelled due to tradelink check timeout or heavy load;

buy_csgo - CS:GO purchases are deactivated on the market;

buy_rust - RUST purchases are deactivated on the market.

Prices are integers. 1000 = $1.00 USD.

Parameters

NameLocationTypeDescription
api
required
querystring
project_id
optional
querystring

Your unique ID (string [50])

Allows to track your trades by project_id via /check-many-project-id

item_id
required
querystring

Item id from fetching our items

token
required
querystring

Token parameter from Steam tradelink

price
required
querynumber

Item price (1000 = 1$)

partner
required
querystring

Partner parameter from Steam tradelink

Responses

200 successful operation

Response
{
  "success": true,
  "id": 1,
  "msg": "buy_csgo",
  "price": 1000
}