Skip to main content
GET
/
preview
/
v2
/
instance_skus
/
{id}
Get instance SKU
curl --request GET \
  --url https://api.sfcompute.com/preview/v2/instance_skus/{id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "instance_sku",
  "id": "<string>",
  "name": "<string>",
  "properties": [
    {
      "key": {
        "name": "<string>",
        "display_name": "<string>",
        "description": "<string>",
        "stable_at": 1738972800,
        "documentation_link": "<string>",
        "deprecated_at": 1738972800,
        "deprecation_info": "<string>"
      },
      "value": {
        "name": "<string>",
        "display_name": "<string>",
        "description": "<string>",
        "stable_at": 1738972800,
        "documentation_link": "<string>",
        "deprecated_at": 1738972800,
        "deprecation_info": "<string>"
      },
      "type": "enumeration"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sfcompute.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Create an API token using sf tokens create or at https://sfcompute.com/account/api-keys.

Path Parameters

id
string
required

Instance SKU ID

Pattern: isku_[0-9a-zA-Z_-]{1,21}
Example:

"isku_k3R-nX9vLm7Qp2Yw5Jd8F"

Response

Instance SKU details.

object
string
default:instance_sku
required
read-only

Single discriminator for the instance-SKU object on both admin and public endpoints. They expose different field shapes but represent the same underlying resource (mirrors Stripe's pattern of one object discriminator per resource type, regardless of view).

Allowed value: "instance_sku"
id
string
required
Pattern: isku_[0-9a-zA-Z_-]{1,21}
Example:

"isku_k3R-nX9vLm7Qp2Yw5Jd8F"

name
string
required

Human-readable name. Lookups still happen by id; the name is purely for display. The public GET /v2/instance_skus and /v2/instance_skus/{id} endpoints hide SKUs whose name hasn't been set, so this field is always present here.

Required string length: 1 - 255
Pattern: [a-zA-Z0-9][a-zA-Z0-9._-]{0,254}
Example:

"my-resource-name"

properties
object[]
required