Skip to main content
GET
/
instances
/
{instanceId}
/
bandwidth
Retrieve instance bandwidth
curl --request GET \
  --url https://api.altostrat.io/instances/{instanceId}/bandwidth \
  --header 'Authorization: Bearer <token>'
{
  "incoming_bytes": 1234567890,
  "outgoing_bytes": 9876543210,
  "date": "2025-10-29"
}

Authorizations

Authorization
string
header
required

Enter your bearer token in the format: Bearer {token}

Path Parameters

instanceId
string<uuid>
required

The unique identifier (UUID) for the VPN instance.

Example:

"d290f1ee-6c54-4b01-90e6-d701748f0851"

Response

Bandwidth usage data.

incoming_bytes
integer

Total incoming data transfer in bytes for the current billing period.

Example:

1234567890

outgoing_bytes
integer

Total outgoing data transfer in bytes for the current billing period.

Example:

9876543210

date
string<date>

The date the bandwidth measurement was taken.

Example:

"2025-10-29"