---
title: "List instance SKUs"
method: GET
path: "/preview/v2/instance_skus"
tags: ["Instance SKUs"]
---

# List instance SKUs

`GET /preview/v2/instance_skus`

> ⚠️ This endpoint is in [public preview](/preview/roadmap).

List all instance SKUs available on the market with their properties.

## Query parameters

- `limit` integer
- `starting_after` string
- `ending_before` string

## Response `200`

Paginated list of instance SKUs.

- SfcApiListInstanceSkusResponse — Paginated list of instance SKUs returned by `GET /v2/instance_skus`.
  - `object` 'list', required
  - `cursor` string
  - `has_more` boolean, required
  - `data` SfcApiInstanceSku[], required
    - `object` 'instance_sku', required — 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).
    - `id` string, required
    - `name` string, required
    - `properties` SfcApiInstanceSkuProperty[], required
      - `key` SfcApiInstanceSkuPropertyKey, required — A property key describing something about an instance SKU (e.g. `accelerator`).
        - `name` string, required
        - `display_name` string, required — Human-readable display name.
        - `description` string, required
        - `documentation_link` string, nullable — Link to a spec sheet or further documentation.
        - `stable_at` integer, required — Unix timestamp.
        - `deprecated_at` integer — Unix timestamp.
        - `deprecation_info` string, nullable — Migration guidance shown when the key is deprecated.
      - `value` SfcApiInstanceSkuEnumerationValue, required — One allowed value for an enumeration-typed property key.
        - `name` string, required
        - `display_name` string, required — Human-readable display name.
        - `description` string, required
        - `documentation_link` string, nullable
        - `stable_at` integer, required — Unix timestamp.
        - `deprecated_at` integer — Unix timestamp.
        - `deprecation_info` string, nullable — Migration guidance shown when the value is deprecated.
      - `type` 'enumeration', required

## Other responses

- `401` — Unauthorized.
- `422` — Validation failed.
- `500` — Internal server error.

---

[API](https://skmtc.net/sfcompute/apis/san-francisco-compute-documentation.md) · [All operations](https://skmtc.net/sfcompute/apis/san-francisco-compute-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sfcompute/san-francisco-compute-documentation/revisions/93dd7661e9bb/schema)
