# 查询可购买的包月云手机套餐

返回当前可供调用团队购买的包月云手机商品。
- **副作用**：无。该调用不会占用容量，也不会扣除团队余额。只读，可带退避安全重试。
- **用途**：将返回的 `skuId` 传给 [`/cloudphone/create`](./open-api.yaml#operation/createUsingPOST)。价格单位为美分，当前包月周期为 30 天。
- **空结果**：`data` 为空数组表示当前没有可用的包月商品。

常见业务错误见 [Error Codes](../Getting%20Started/error-codes.md)。

Endpoint: GET /cloudphone/monthly/skus
Version: 2026-09-05
Security: Authorization

## Security:

  - `Authorization` (unknown)
    http bearer JWT

## Response 200:

  - `200` (unknown)
    Request processed; `data` is an empty array when no monthly product is available

## Response 200 fields (application/json):

  - `code` (integer, required)
    Business result code; `0` indicates success
    Example: 0

  - `msg` (string | null, required)
    Error message; null when successful
    Example: null

  - `requestId` (string, required)
    Request ID for troubleshooting
    Example: 1d4f3ea968664593860b94b35d4ebf5e

  - `data` (array)

  - `data.skuId` (string, required)
    Monthly Cloud Phone product ID

  - `data.skuName` (string, required)
    Product name returned in the product-service language

  - `data.cloudPhoneAndroidVersion` (string | null)
    Android version, or null when the product has no configured value

  - `data.cloudPhoneStorage` (integer | null)
    Storage capacity in GB, or null when the product has no configured value

  - `data.prices` (array, required)
    Active monthly price configurations

  - `data.prices.price` (integer, required)
    Configured price in US cents

  - `data.prices.period` (integer, required)
    Billing-period count returned by the product service

  - `data.prices.periodUnit` (string, required)
    Localized billing-period unit returned by the product service

  - `data.prices.priceDesc` (string | null)
    Localized display price, when configured

