List networks
Retrieve networks available to the authenticated user.
Endpoint
GET /v1/private_networksExample
cURL
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
| Field | Type | Description |
|---|---|---|
| id | string | Unique network ID |
| name | string | Network name |
| status | string | Network status |
| subnets | string[] | Subnet IDs attached to the network |
| created_at | string | Creation 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