Sync with Waxpeer session to auto-fill API key

Transfer funds to another user

POST/v1/transfer-money

Transfer money from your account to another user's account using their Steam ID. The amount will be deducted from your balance and added to the recipient's balance.

Parameters

NameLocationTypeDescription
api
required
querystring
steam_id
required
querystring

Steam ID of the recipient user

amount
required
querynumber

Amount to transfer (must be positive)

Responses

200 Transfer result

Response
{
  "success": true,
  "msg": "Transfer completed successfully"
}

400 Bad request - Invalid parameters or insufficient funds

Response
{
  "success": false,
  "msg": "Missing field"
}

403 Wrong or missing API key

Response
{
  "success": false,
  "msg": "Missing API"
}