GET
/
networkvolumes
List network volumes
curl --request GET \
  --url https://rest.runpod.io/v1/networkvolumes \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "agv6w2qcg7",
    "name": "my network volume",
    "size": 50,
    "dataCenterId": "EU-RO-1"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful operation.

id
string

A unique string identifying a network volume.

Example:

"agv6w2qcg7"

name
string

A user-defined name for a network volume. The name does not need to be unique.

Example:

"my network volume"

size
integer

The amount of disk space, in gigabytes (GB), allocated to a network volume.

Example:

50

dataCenterId
string

The Runpod data center ID where a network volume is located.

Example:

"EU-RO-1"