Skip to main content
GET
/
consumer
/
usage
Get consumer usage stats
curl --request GET \
  --url https://api.hixbe.com/fiber/consumer/usage \
  --header 'Authorization: Bearer <token>' \
  --header 'Hixe-Version: <hixe-version>'
{
  "daily_gb": 12.5,
  "monthly_gb": 387.2,
  "monthly_limit_gb": null,
  "last_updated": "2026-01-15T14:30:00Z"
}
Returns data usage statistics including daily and monthly consumption. Usage data is updated approximately every 15 minutes. Use Cases:
  • Monitor data consumption
  • Display usage graphs in customer portal
  • Check against data caps (if applicable)

Authorizations

Authorization
string
header
required

JWT token obtained from Hixbe account dashboard

Headers

Hixe-Version
string
required

API version in YYYY-MM-DD format. Current version: 2026-01-01

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-01-01"

Response

Successfully retrieved usage statistics

Data usage statistics for consumer account

daily_gb
number
required

Data used today in gigabytes

Required range: x >= 0
Example:

12.5

monthly_gb
number
required

Data used this billing cycle in gigabytes

Required range: x >= 0
Example:

387.2

monthly_limit_gb
number | null

Monthly data cap in gigabytes (null if unlimited)

Example:

null

last_updated
string<date-time>

Timestamp of last usage update (ISO 8601 format)

Example:

"2026-01-15T14:30:00Z"