v1

latestOpenAPI 3.1.02026-07-26290137.0 KB

Tipping

Used to tip other accounts using their Steam/Empire ID. This requires 2FA codes alongside your API key in order to work.

post/user/tip

Request body

user_idstring

The ID of the user you want to tip. This field is mutually exclusive with steam_id, so it's optional.

steam_idstring

The Steam ID of the user you want to tip. This field is mutually exclusive with user_id, so it's optional.

amountstring required

The amount you want to tip in coin-cents (1 coin = 100 coincents)

Response

200

successboolean

Example response

{
  "success": true,
  "data": {
    "user": {
      "id": 12345
    },
    "amount": 100,
    "balance": 499500
  }
}