cURL
curl --request GET \ --url https://api.novita.ai/gpu-instance/openapi/v1/networkstorages/list \ --header 'Authorization: <authorization>' \ --header 'Content-Type: <content-type>'
{ "data": [ { "storageId": "<string>", "storageName": "<string>", "storageSize": 123, "clusterId": "<string>", "clusterName": "<string>", "price": "<string>" } ], "total": 123 }
application/json
Show properties
curl --request GET \ --url 'https://api.novita.ai/gpu-instance/openapi/v1/networkstorages/list' \ --header 'Authorization: Bearer {{API Key}}'
{ "data": [ { "storageId": "d4e82677-3f80-4020-a731-d15b1c589aa8", "storageName": "123", "storageSize": 10, "clusterId": "5", "clusterName": "EU-01", "price": "100" }, { "storageId": "082383c6-bc28-4bfa-a3b3-b6d6511bdf64", "storageName": "123", "storageSize": 10, "clusterId": "5", "clusterName": "EU-01", "price": "100" } ], "total": 2 }
Was this page helpful?