در حال بارگذاری…
Retrieves the current balance for the authenticated user.
| Permission | Description |
|---|---|
payments.view_own | Access the payment system |
payments.view_own_balance | View your own balance |
Returns the user's current balance.
{
"balance": 123.456
}
The returned figure is the spendable balance, and it is type-aware — see Payment System § How the balance is computed for the full table.
The point clients most often get wrong: pending withdrawal requests are already subtracted here. A
withdrawal reduces this number from the moment it is created, not when an admin marks it is_done. A
client that subtracts its own pending withdrawals from this value will double-count them.
| Status | Description | Reference |
|---|---|---|
| 401 | Unauthorized | Authentication error |
| 403 | Forbidden | Permission error |