GET
/
gpu-instance
/
openapi
/
v1
/
products

Request Headers

Content-Type
string
required

Enum: application/json

Authorization
string
required

Bearer authentication format, for example: Bearer {{API Key}}.

Query Parameters

clusterId
string

Filter the products of the cluster with ID = clusterId.

productName
string

Filter the products with Name = productName.

Response

data
object[]

Example

Request

curl --request GET \
  --url 'https://api.novita.ai/gpu-instance/openapi/v1/products' \
  --header 'Authorization: Bearer {{API Key}}'

Response

{
  "data": [
    {
      "id": "23",
      "name": "RTX 3090 24GB",
      "cpuPerGpu": 8,
      "memoryPerGpu": 56,
      "diskPerGpu": 670,
      "availableDeploy": true,
      "price": 20000
    }
  ]
}