List subnetworks for a network pool
/v1/network_pools/{network_pool_id}/subnetworksYou can list all the subnetworks within a pool by sending a GET request to the /v1/network_pools/{network_pool_id}/subnetworks endpoint. A pool has to be specified in the path parameter. Subnetworks can be used only on dedicated servers.
Authorization
bearerAuth In: header
Path Parameters
A unique identifier of a pool that contains subnetworks.
Query Parameters
This pattern is used to return resources containing the parameter value in its name.
This parameter indicates with true or false if a subnetwork is attached to a dedicated server.
The number of results [ 1 .. 100 ] displayed on a page. By default, 20 results are shown.
1 <= value <= 10020The number of a page (>= 1) that will be returned. By default, it's 1.
1 <= value1This parameter sorts items. By default, it's id.
"id"Value in
- "id"
- "created_at"
- "updated_at"
This parameter defines if items are sorted in an ascending ASC or descending DESC order. By default, ASC is set up.
"ASC"Value in
- "ASC"
- "DESC"
Response Body
application/json
curl -X GET "https://example.com/v1/network_pools/MvbmOpeY/subnetworks"[ { "id": "openx4b7", "network_pool_id": "MvbmOpeY", "title": "Public", "cidr": "100.10.32.0/29", "attached": true, "interface_type": "public", "updated_at": "2026-05-28T06:56:10Z", "created_at": "2026-05-28T06:56:10Z" }, { "id": "JxboVzag", "network_pool_id": "MvbmOpeY", "title": "title81", "cidr": "100.10.32.8/29", "attached": false, "interface_type": "public", "updated_at": "2026-05-28T06:56:10Z", "created_at": "2026-05-28T06:56:10Z" }, { "id": "8mep81eM", "network_pool_id": "MvbmOpeY", "title": "Public", "cidr": "100.10.32.16/29", "attached": true, "interface_type": "public", "updated_at": "2026-05-28T06:56:10Z", "created_at": "2026-05-28T06:56:10Z" }]