- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plansGET
- List serversGET
- Server statusGET
- Get a serverGET
- Server metricsGET
- BandwidthGET
- Deploy new serverPOST
- Start a serverPOST
- Restart a serverPOST
- Stop a serverPOST
- Power offPOST
- Cancel serverPOST
- Undo cancel requestDELETE
- Change passwordPUT
- Update hostnamePUT
- Update SSH KeysPATCH
- Modify ISOsPOST
- RestorePOST
- Renew serverPOST
- Reinstall ServerPOST
- Change Primary IPPOST
- Calculate renew amountPOST
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
Server metrics
GET
https://api.vpsbg.eu/v1/servers/{id}/metrics
Servers
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
integerÂ
required
Query Params
filter[month]
numberÂ
optional
filter[year]
numberÂ
optional
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 -g --request GET 'https://api.vpsbg.eu/v1/servers//metrics?filter[month]&filter[year]' \
--header 'Accept;' \
--header 'Content-Type: text/plain' \
--data-raw ''
Responses
🟢200List of historical data points and server metrics, sorted in descending order with the newest data at the top.
application/json
Body
data
array [object {8}]Â
optional
timestamp
integerÂ
optional
running
booleanÂ
optional
cpu
numberÂ
optional
network_in
numberÂ
optional
network_out
numberÂ
optional
disk
numberÂ
optional
io_read
integerÂ
optional
io_write
numberÂ
optional
Example
{
"data": [
{
"timestamp": 1696888806,
"running": true,
"cpu": 2,
"network_in": 0.006080078125,
"network_out": 0.000115234375,
"disk": 3.8271484375,
"io_read": 0,
"io_write": 0.0106669921875
},
{
"timestamp": 1696888562,
"running": true,
"cpu": 1.9,
"network_in": 0.006513671875,
"network_out": 0.00012890625,
"disk": 3.8271484375,
"io_read": 0,
"io_write": 0.0026669921875
}
]
}
🔴500Server Error
Modified at 2025-03-26 15:19:01