Sync with Waxpeer session to auto-fill API key

Buy item by name and send to specific tradelink

GET/v1/buy-one-p2p-name

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

name
required
querystring

Name of an item you can also pass without extension which will buy the cheapest available

token
required
querystring

Token parameter from Steam tradelink

price
required
querynumber

Item price (1000 = 1$)

partner
required
querystring

Partner parameter from Steam tradelink

game
required
queryenum

Which game would you like to buy items from

enum: csgo, tf2, rust, dota2

Responses

200 successful operation

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