Skip to main content

Create Network Volume

Overview

This API endpoint allows you to create a new network volume with a specified template name, volume space, and optional configurations like unit and region type.

Example​

  • Method: POST

Endpoint​

 https://api.gpulab.ai/nas-server 

Headers​

ParameterDescriptionType
api-keyYour API Key for request authorization.string

Request Body Attributes​

AttributeDescriptionType
template_nameName of the network volume (string).str
volume_spaceSize of the volume in GB (integer).int
unitOptional. The unit for the volume (string).Optional[str]
region_typeOptional. Specifies the region type (string).Optional[str]

Request Body (JSON)​

{
"template_name": "LLM",
"volume_space": 100,
"unit": "GB",
"region_type": "us-west"
}