---
title: "Get Supported Platforms"
method: GET
path: "/v1/releases/supported-platforms"
tags: ["releases"]
---

# Get Supported Platforms

`GET /v1/releases/supported-platforms`

Get list of currently supported platform IDs.

This endpoint returns which platforms have releases available for download.
The frontend uses this to gray out unsupported platforms in the download UI.

This is public data for the marketing download page, so no authentication
is required. CDN-friendly caching is enabled to reduce backend load.

Returns:
    SupportedPlatformsResponse with list of supported platform IDs

Example:
    GET /v1/releases/supported-platforms

    Response:
    {
        "supported": [
            "macos-intel",
            "macos-apple-silicon",
            "windows-x64",
            "linux-x64"
        ]
    }

## Response `200`

Successful Response

- SupportedPlatformsResponse — Response model for supported platforms endpoint.
  - `supported` string[], required

---

[API](https://skmtc.net/quadrillion/apis/quadrillion-cloud-api.md) · [All operations](https://skmtc.net/quadrillion/apis/quadrillion-cloud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/quadrillion/quadrillion-cloud-api/revisions/c53108d35a70/schema)
