Skip to main content
GET
/
consumer
/
network
Get consumer network info
curl --request GET \
  --url https://api.hixbe.com/fiber/consumer/network \
  --header 'Authorization: Bearer <token>' \
  --header 'Hixe-Version: <hixe-version>'
{
  "ip": "203.0.113.42",
  "ipv6": "2001:db8::1",
  "plan": "Fiber 1000",
  "status": "active",
  "connection_type": "FTTH",
  "max_speed_mbps": 1000
}
Returns current network configuration including IP addresses, plan details, and service status for the authenticated consumer account. Use Cases:
  • Display current IP address in customer portal
  • Check service status before troubleshooting
  • Verify plan details and connection type

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 network information

Network information for consumer account including IP addresses and service status

ip
string
required

Assigned IPv4 address

Example:

"203.0.113.42"

plan
enum<string>
required

Current subscription plan name

Available options:
Fiber 100,
Fiber 500,
Fiber 1000,
Fiber 2000
Example:

"Fiber 1000"

status
enum<string>
required

Current service status

Available options:
active,
suspended,
pending
Example:

"active"

ipv6
string | null

Assigned IPv6 address (if available)

Example:

"2001:db8::1"

connection_type
enum<string>

Type of fiber connection

Available options:
FTTH,
FTTB,
FTTC
Example:

"FTTH"

max_speed_mbps
integer

Maximum download speed in Mbps for current plan

Example:

1000