Volumes
/volumes/types
Volumes
/volumes/types
Get list of supported storage volumes.
GET
/
volumes
/
types
curl --request GET \
--url https://api.shadeform.ai/v1/volumes/types \
--header 'X-API-KEY: <api-key>'
{
"volume_types": [
{
"cloud": "hyperstack",
"region": "canada-1",
"supports_multi_mount": true,
"fixed_size": true,
"price_per_gb_per_hour": "0.0001"
}
]
}
Authorizations
Response
200 - application/json
Returns an VolumesTypesResponse object.
Specifies the underlying cloud provider. See this explanation for more details.
Available options:
aws
, azure
, lambdalabs
, tensordock
, runpod
, latitude
, jarvislabs
, oblivus
, paperspace
, datacrunch
, massedcompute
, vultr
Specifies the region.
Denotes whether the volume supports multiple instances mounting to it at the same time.
Denotes whether the volume is fixed in size or elastically scaling.
Price of the specified volume type per GB per hour
curl --request GET \
--url https://api.shadeform.ai/v1/volumes/types \
--header 'X-API-KEY: <api-key>'
{
"volume_types": [
{
"cloud": "hyperstack",
"region": "canada-1",
"supports_multi_mount": true,
"fixed_size": true,
"price_per_gb_per_hour": "0.0001"
}
]
}