Skip to main content
GET
/
v2
/
payments
/
balance
Get user balance
curl --request GET \
  --url https://api.gameboost.com/v2/payments/balance \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "balance_eur": "<string>",
  "balance_usd": "<string>",
  "warehouse_balance_eur": "<string>",
  "warehouse_balance_usd": "<string>",
  "store_credit_eur": "<string>",
  "store_credit_usd": "<string>",
  "gb_coins": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

User balance information

User balance object containing all available balances and credits

message
string

Informational message about the user balance status

balance_eur
string

Main withdrawable balance in EUR currency

balance_usd
string

Main withdrawable balance converted to USD

warehouse_balance_eur
string

Warehouse balance (from warehouse sales) in EUR currency

warehouse_balance_usd
string

Warehouse balance (from warehouse sales) converted to USD

store_credit_eur
string

Non-withdrawable store credit that can be used for purchases in EUR

store_credit_usd
string

Non-withdrawable store credit that can be used for purchases in USD

gb_coins
integer

GameBoost loyalty coins that can be redeemed for rewards

I