Model APIs
- Introduction
- LLM API
- Image, Audio and Video
GPUs
- GPU Instance
- Cluster
- Instance
- Template
- Product
- Network
- Image Registry
- Storage
- Serverless GPUs
Cluster
List Clusters
GET
/
gpu-instance
/
openapi
/
v1
/
clusters
curl --request GET \
--url https://api.novita.ai/gpu-instance/openapi/v1/clusters \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"availableGpuType": {},
"supportNetworkStorage": true,
"supportInstanceNetwork": true
}
]
}
Request Headers
Enum: application/json
Bearer authentication format, for example: Bearer {{API Key}}.
Response
Cluster ID.
Cluster name.
Supported GPU types in the cluster.
Whether the cluster supports creating cloud storage.
Whether the cluster supports creating VPC networks.
Was this page helpful?
curl --request GET \
--url https://api.novita.ai/gpu-instance/openapi/v1/clusters \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"availableGpuType": {},
"supportNetworkStorage": true,
"supportInstanceNetwork": true
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.