Bandwidth
GET
https://api.vpsbg.eu/v1/servers/{id}/bandwidthThis endpoint return bandwidth information for the selected server.
Request
Path Params
id
integer
required
VPSBG's ID of your server
Query Params
filter[start]
integer | null
optional
Show records from this timestamp.
Example:
1725963656
filter[end]
integer | null
optional
Show records until this timestamp.
Example:
1725963656
Request samples
Responses
Bandwidth statistics(200)
Bandwidth statistics
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
limit
integer
required
Bandwidth limit of the server in GBs.
used
number
required
Used bandwidth for this bandwidth cycle in GBs.
daily_usage
array [object {3}]
required
List of day-by-day bandwidth usage for this server.
timestamp
integer
required
incoming
number
required
Incoming bandwidth in GBs.
outgoing
number
required
Outgoing bandwidth in GBs.
Example
{
"limit": 5000,
"used": 12.96,
"daily_usage": [
{
"timestamp": 1724792400,
"incoming": 1.4180859375,
"outgoing": 0.00109375
},
{
"timestamp": 1724878800,
"incoming": 1.40078125,
"outgoing": 0.001103515625
},
{
"timestamp": 1724965200,
"incoming": 1.349755859375,
"outgoing": 0.00109375
},
{
"timestamp": 1725051600,
"incoming": 1.354638671875,
"outgoing": 0.001083984375
},
{
"timestamp": 1725138000,
"incoming": 1.400458984375,
"outgoing": 0.00109375
},
{
"timestamp": 1725224400,
"incoming": 1.386259765625,
"outgoing": 0.001103515625
},
{
"timestamp": 1725310800,
"incoming": 1.39705078125,
"outgoing": 0.00109375
},
{
"timestamp": 1725397200,
"incoming": 1.4091015625,
"outgoing": 0.001142578125
},
{
"timestamp": 1725483600,
"incoming": 1.39791015625,
"outgoing": 0.0011328125
},
{
"timestamp": 1725570000,
"incoming": 1.474140625,
"outgoing": 0.0011328125
},
{
"timestamp": 1725656400,
"incoming": 1.31255859375,
"outgoing": 0.001123046875
},
{
"timestamp": 1725742800,
"incoming": 1.289072265625,
"outgoing": 0.00111328125
},
{
"timestamp": 1725829200,
"incoming": 1.300478515625,
"outgoing": 0.001171875
},
{
"timestamp": 1725915600,
"incoming": 0.58103515625,
"outgoing": 0.0005078125
}
]
}
Last modified: 3 months ago