Skip to Content
APINetworksList Networks

List networks

Retrieve networks available to the authenticated user.


Endpoint

GET /v1/private_networks

Example

curl https://api.redu.cloud/v1/private_networks \ -H "x-api-key: YOUR_API_KEY"

Successful response

{ "items": [ { "id": "32081aab-e6c7-40d8-bb04-90b0dbb7e8ee", "name": "default-private-network", "status": "active", "subnets": ["a3856f60-4128-4c12-ae3c-b080f56dbdeb"], "created_at": "2026-02-09T16:03:36Z" } ], "next_cursor": null }

Fields

FieldTypeDescription
idstringUnique network ID
namestringNetwork name
statusstringNetwork status
subnetsstring[]Subnet IDs attached to the network
created_atstringCreation timestamp in ISO 8601 UTC

Errors

401 Unauthorized

{ "error": { "code": "unauthorized", "message": "Invalid API key" } }

403 Forbidden

The API key does not have access to the requested resource.

Last updated on