- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plans
- List servers
- Server status
- Get a server
- Server metrics
- Bandwidth
- Deploy new server
- Start a server
- Restart a server
- Stop a server
- Power off
- Cancel server
- Undo cancel request
- Change password
- Update hostname
- Update SSH Keys
- Modify ISOs
- Restore
- Renew server
- Reinstall Server
- Change Primary IP
- Calculate renew amount
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
Balance
GET
https://api.vpsbg.eu/v1/balance
User
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Accept
stringÂ
required
Default:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.vpsbg.eu/v1/balance' \
--header 'Accept;'
Responses
🟢200Account balance
application/json
Body
balance
numberÂ
required
balance_limit
numberÂ
required
estimated_expenses
integerÂ
required
shortfall
integerÂ
required
currency
stringÂ
required
has_valid_card
booleanÂ
required
last_deposit
objectÂ
required
amount
numberÂ
required
amount_with_vat
numberÂ
required
payment_method
stringÂ
required
payment_date
stringÂ
required
unconfirmed_bitcoin_deposits
array [object {5}]Â
required
tx_hash
stringÂ
optional
tx_amount
stringÂ
optional
amount
numberÂ
optional
amount_with_vat
numberÂ
optional
noticed_on
stringÂ
optional
Example
{
"balance": 3476.06,
"estimated_funds": 30,
"shortfall": 0,
"currency": "EUR",
"has_valid_card": true,
"last_deposit": {
"amount": 41.67,
"amount_with_vat": 50,
"payment_method": "card",
"payment_date": "2024-10-16T12:06:12.000000Z"
},
"unconfirmed_bitcoin_deposits": [
{
"tx_hash": "cbba72720e562761a1a1a32b04624cfc16356d0fd27ff8144e15df3a5329f87a",
"tx_amount": "0.002793",
"amount": 58.02,
"amount_with_vat": 69.62,
"noticed_on": "2024-07-29T13:18:49.000000Z"
}
]
}
🔴500Server Error
Modified at 2025-04-04 11:49:37