UptimeUptime Wiki

Subnet

Parameters

Path Parameters
id*integer

Entity id

Formatint64
Range0 <= value

Try the endpoint

GET
/api/v1/network/subnets/{id}

Code example

curl -X GET "https://example.com/api/v1/network/subnets/0"

Response example

{  "id": 0,  "l2vni": 0,  "vrf_id": 0,  "service": "string",  "member_count": 0,  "dedicated_host_ids": [    0  ],  "carrier_host_ids": [    0  ],  "routes_via": "string"}

Response body

200The entity
application/json

An L2 broadcast domain (subnet) — the finer isolation grain BELOW the VRF: a VRF is the routed L3 boundary, a subnet is one L2 segment within it, keyed one-per-ServiceClass (so a tenant running VMs + Functions + K8s + a managed DB has four sibling subnets, each independently dedicatable). Small top-level list on WorldSnapshot (msgpack keyframe-only, exactly like segments / host_pools; subnets change rarely, so they never ride the per-tick capnp delta). Empty until the network-isolation model mints any subnet.

On this page