GET
/
organizations
/
{organization_name}
/
gpu-classes
List the GPU Classes
curl --request GET \
  --url https://api.salad.com/api/public/organizations/{organization_name}/gpu-classes \
  --header 'Salad-Api-Key: <api-key>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "prices": [
        {
          "priority": "high",
          "price": "<string>"
        }
      ],
      "is_high_demand": true,
      "gpu_class_type": "community",
      "min_vcpu": 1,
      "max_vcpu": 123,
      "min_ram": 1,
      "max_ram": 123,
      "min_storage": 1,
      "max_storage": 123
    }
  ]
}
Last Updated: July 1, 2025

Authorizations

Salad-Api-Key
string
header
required

Path Parameters

organization_name
string
required

Your organization name. This identifies the billing context for the API operation and represents a security boundary for SaladCloud resources. The organization must be created before using the API, and you must be a member of the organization.

Required string length: 2 - 63
Examples:

"acme-corp"

Response

OK

Represents a list of GPU classes

items
object[]
required

The list of GPU classes

Maximum length: 100