EclipseProxy

Get bandwidth info

GET /api/reseller/v1/bandwidth: pool balance and account overview

GEThttps://www.eclipseproxy.com/api/reseller/v1/bandwidthBearer auth

Retrieve your bandwidth pool balance and account overview.

Example request

curl -X GET "https://www.eclipseproxy.com/api/reseller/v1/bandwidth" \
  -H "Authorization: Bearer YOUR_API_KEY"

Authentication

Requires a reseller API key. Pass it as Authorization: Bearer YOUR_API_KEY or X-API-Key: YOUR_API_KEY. See Reseller overview.

Response

bandwidthBalancenumber
Available bandwidth in MB.
storeNamestring
Human-readable store name.
storeCodestring
Unique store identifier.
subuserCountnumber
Total subusers created.
totalAllocatednumber
Total bandwidth allocated across all subusers (MB).
createdAtstring
Account creation timestamp (ISO 8601).

Example response

{
  "status": "success",
  "message": "OK",
  "messageCode": "OK",
  "data": {
    "bandwidthBalance": 1000,
    "storeName": "My Store",
    "storeCode": "MYSTORE",
    "subuserCount": 5,
    "totalAllocated": 500,
    "createdAt": "2026-01-15T10:30:00Z"
  }
}

Errors

  • 401 UNAUTHORIZED: missing or invalid API key
  • 403 NOT_RESELLER: account is not a reseller

On this page